diff --git a/src/pages/preselectionForms/components/fieldsSelectors/CustomQuestionCard.tsx b/src/pages/preselectionForms/components/fieldsSelectors/CustomQuestionCard.tsx index c2e55291..71bf6b4d 100644 --- a/src/pages/preselectionForms/components/fieldsSelectors/CustomQuestionCard.tsx +++ b/src/pages/preselectionForms/components/fieldsSelectors/CustomQuestionCard.tsx @@ -15,7 +15,9 @@ export const CustomQuestionCard: React.FC<{ question: "", shortTitle: "", name: `Custom ${getCustomQuestionTypeLabel(selected)}`, - ...(selected !== "text" ? { options: ["", ""] } : undefined), + ...(selected !== "text" + ? { options: [{ value: "" }, { value: "" }] } + : undefined), }); };