Skip to content

Commit

Permalink
Fix questionnaires generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Gavriil-Tzortzakis committed Dec 20, 2024
1 parent f1b0375 commit d9e7472
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ export const onboardingQuestionnaire = (t: TranslateFunction, name: string) => [
livingLocationPage(t),
maritalStatusPage(t),
dependentsPage(t),
schoolAttendancePage,
schoolAttendancePage(t),
employmentStatusPage(t),
disabilityPage(t),
skippingMealsPage,
skippingMealsPage(t),
unexpectedExpensesCoveredPage(t),
savingsPage(t),
debtPersonalPage(t),
Expand All @@ -62,10 +62,10 @@ export const checkinQuestionnaire = (t: TranslateFunction, name: string) => [
livingLocationPage(t),
maritalStatusPage(t),
dependentsPage(t),
schoolAttendancePage,
schoolAttendancePage(t),
employmentStatusPage(t),
disabilityPage(t),
skippingMealsPage,
skippingMealsPage(t),
unexpectedExpensesCoveredPage(t),
savingsPage(t),
debtPersonalPage(t),
Expand All @@ -83,10 +83,10 @@ export const offboardingQuestionnaire = (t: TranslateFunction, name: string) =>
livingLocationPage(t),
maritalStatusPage(t),
dependentsPage(t),
schoolAttendancePage,
schoolAttendancePage(t),
employmentStatusPage(t),
disabilityPage(t),
skippingMealsPage,
skippingMealsPage(t),
unexpectedExpensesCoveredPage(t),
savingsPage(t),
];
Expand All @@ -98,10 +98,10 @@ export const offboardingCheckinQuestionnaire = (t: TranslateFunction, name: stri
livingLocationPage(t),
maritalStatusPage(t),
dependentsPage(t),
schoolAttendancePage,
schoolAttendancePage(t),
employmentStatusPage(t),
disabilityPage(t),
skippingMealsPage,
skippingMealsPage(t),
unexpectedExpensesCoveredPage(t),
savingsPage(t),
];

0 comments on commit d9e7472

Please sign in to comment.