diff --git a/src/components/Widgets/SignupQuestionsWidget/QuestionList.tsx b/src/components/Widgets/SignupQuestionsWidget/QuestionList.tsx index c61989d..b69ce32 100644 --- a/src/components/Widgets/SignupQuestionsWidget/QuestionList.tsx +++ b/src/components/Widgets/SignupQuestionsWidget/QuestionList.tsx @@ -8,7 +8,7 @@ import OptionsWidget from "./OptionsWidget"; import TypeWidget from "./TypeWidget"; import QuestionElement from "./Question"; -const WidgetRow = styled(Draggable)` +const WidgetRow = styled.div` margin-bottom: 1rem; display: flex; flex-flow: column nowrap; @@ -60,23 +60,23 @@ class QuestionList extends React.Component { const optionsWidget = ; const typeSelectWidget = ; return ( - - - - - {typeSelectWidget} - {optionsWidget} - - - + + + + + {typeSelectWidget} + {optionsWidget} + + + ); }); }