diff --git a/frontend/src/lib/editor/VotingEditorPart.svelte b/frontend/src/lib/editor/VotingEditorPart.svelte index a2f14a7..0b3aab5 100644 --- a/frontend/src/lib/editor/VotingEditorPart.svelte +++ b/frontend/src/lib/editor/VotingEditorPart.svelte @@ -9,7 +9,6 @@ import { reach } from 'yup'; import { getLocalization } from '$lib/i18n'; import { VotingQuestionSchema } from '$lib/yupSchemas'; - import { onMount } from 'svelte'; const { t } = getLocalization(); @@ -24,6 +23,7 @@ if (typeof data.questions[selected_question].answers[0].right === 'boolean') { data.questions[selected_question].answers = []; } + // eslint-disable-next-line no-empty } catch {} /*console.log(data.questions[selected_question].answers, 'moIn!', data.questions[selected_question].answers.length); @@ -35,12 +35,6 @@ });*/ - -