Skip to content

Commit

Permalink
Update frontend/src/stores/QuestionStore.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Laurens Weijs <[email protected]>
  • Loading branch information
ravimeijerrig and laurensWe authored Nov 11, 2024
1 parent 5a99f66 commit e1268db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/stores/QuestionStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit e1268db

Please sign in to comment.