diff --git a/src/components/application/questions/DropdownQuestion.tsx b/src/components/application/questions/DropdownQuestion.tsx
index 95e11303..5156f79b 100644
--- a/src/components/application/questions/DropdownQuestion.tsx
+++ b/src/components/application/questions/DropdownQuestion.tsx
@@ -18,7 +18,7 @@ function validation(props: DropdownQuestionProps): (value: string) => void {
}
const DropdownQuestion = (props: DropdownQuestionProps) => {
- return } required={props.required} description={props.subtitle} label={props.title} data={props.additionalData.options} style={props.style} max={props.additionalData.maxSelect} onChange={(e) => props.onChange && props.onChange(e)} error={props.error} />;
+ return } required={props.required} description={props.subtitle} label={props.title} data={props.additionalData.options} style={props.style} maxValues={props.additionalData.maxSelect} onChange={(e) => props.onChange && props.onChange(e)} error={props.error} />;
};
const EditQuestion = ({ editingQuestion, handleUpdateEditingQuestion }: any) => {