Skip to content

Commit

Permalink
fix: 5345
Browse files Browse the repository at this point in the history
  • Loading branch information
monsieurtanuki committed Jun 8, 2024
1 parent 2e44edb commit e74d228
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/smooth_app/lib/pages/navigator/app_navigator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ class _SmoothGoRouter {
),
GoRoute(
path: _InternalAppRoutes.SIGNUP_PAGE,
builder:(_, __) => const SignUpPage(),
)
builder: (_, __) => const SignUpPage(),
)
],
),
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class _SignUpPageState extends State<SignUpPage> with TraceableClientMixin {

@override
String get actionName => 'Opened sign_up_page';

@override
Widget build(BuildContext context) {
final ThemeData theme = Theme.of(context);
Expand Down Expand Up @@ -413,7 +413,8 @@ class _SignUpPageState extends State<SignUpPage> with TraceableClientMixin {
if (!mounted) {
return;
}
final UserPreferences userPreferences = await UserPreferences.getUserPreferences();
final UserPreferences userPreferences =
await UserPreferences.getUserPreferences();
userPreferences.resetOnboarding();
await showDialog<void>(
context: context,
Expand Down

0 comments on commit e74d228

Please sign in to comment.