diff --git a/src/pages/Questions/DraggableList/DraggableListItem.tsx b/src/pages/Questions/DraggableList/DraggableListItem.tsx index cc4e4518..945ba7b2 100644 --- a/src/pages/Questions/DraggableList/DraggableListItem.tsx +++ b/src/pages/Questions/DraggableList/DraggableListItem.tsx @@ -1,5 +1,5 @@ import { Draggable } from "react-beautiful-dnd"; -import { Box, ListItem } from "@mui/material"; +import { Box } from "@mui/material"; import QuestionsPageCard from "./QuestionPageCard"; diff --git a/src/pages/Questions/answerOptions/AnswerDraggableList/index.tsx b/src/pages/Questions/answerOptions/AnswerDraggableList/index.tsx index a9548914..00dc6ff4 100644 --- a/src/pages/Questions/answerOptions/AnswerDraggableList/index.tsx +++ b/src/pages/Questions/answerOptions/AnswerDraggableList/index.tsx @@ -30,7 +30,7 @@ export const AnswerDraggableList = ({ return ( - + {(provided) => ( {variants.map((variant, index) => ( @@ -42,6 +42,7 @@ export const AnswerDraggableList = ({ variant={variant} /> ))} + {provided.placeholder} )}