diff --git a/apps/frontend-manage/src/components/questions/manipulation/options/SelectionOptions.tsx b/apps/frontend-manage/src/components/questions/manipulation/options/SelectionOptions.tsx
index eec178f7db..c125941e8b 100644
--- a/apps/frontend-manage/src/components/questions/manipulation/options/SelectionOptions.tsx
+++ b/apps/frontend-manage/src/components/questions/manipulation/options/SelectionOptions.tsx
@@ -6,6 +6,7 @@ import {
FormikSelectField,
FormikSwitchField,
FormLabel,
+ UserNotification,
} from '@uzh-bf/design-system'
import { useField } from 'formik'
import { useTranslations } from 'next-intl'
@@ -65,7 +66,7 @@ function SelectionOptions({ values }: SelectionOptionsProps) {
// udpate the selected correct answers if the answer collection changes
useEffect(() => {
- if (!field.value) {
+ if (!field.value || !collectionAnswers || collectionAnswers.length === 0) {
return
}
@@ -82,6 +83,16 @@ function SelectionOptions({ values }: SelectionOptionsProps) {
return