diff --git a/frontend/src/stores/QuestionStore.ts b/frontend/src/stores/QuestionStore.ts index b65edb0b..a964bd70 100644 --- a/frontend/src/stores/QuestionStore.ts +++ b/frontend/src/stores/QuestionStore.ts @@ -16,7 +16,7 @@ export const useQuestionStore = defineStore('question', () => { const initialAnswers = JSON.parse(localStorage.getItem('answers') ?? '[]') const initialLabels = JSON.parse(localStorage.getItem('labels') ?? '{}') const initialLabelsBySubCategory = JSON.parse(localStorage.getItem('labelsbysubcategory') ?? initialLabelsBySubCategoryNTB) - const initialQuestionId = localStorage.getItem('currentquestion') ?? '1.2' //TODO: check if this is correct + const initialQuestionId = localStorage.getItem('currentquestion') ?? '1.2' const initialConclusionId = localStorage.getItem('currentconclusion') ?? '' const AcceptedDisclaimer = ref(String(initialAcceptedDisclaimer))