Skip to content

Commit

Permalink
feat(app): switch intro and tour in more
Browse files Browse the repository at this point in the history
  • Loading branch information
tamslo committed Feb 27, 2025
1 parent 133bb1f commit ca59946
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/lib/more/pages/more.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ class MorePage extends StatelessWidget {
_buildSettingsItem(
title: context.l10n.more_page_contact_us,
onTap: () => sendEmail(context)),
_buildSettingsItem(
title: context.l10n.more_page_onboarding,
onTap: () =>
context.router.push(OnboardingRoute(isRevisiting: true)),
),
_buildSettingsItem(
title: context.l10n.more_page_app_tour,
onTap: () async => showAppTour(
Expand All @@ -49,11 +54,6 @@ class MorePage extends StatelessWidget {
revisiting: true,
),
),
_buildSettingsItem(
title: context.l10n.more_page_onboarding,
onTap: () =>
context.router.push(OnboardingRoute(isRevisiting: true)),
),
_buildSettingsItem(
title: context.l10n.more_page_genetic_information,
onTap: () => context.router.push(
Expand Down

0 comments on commit ca59946

Please sign in to comment.