diff --git a/userfront/lib/features/auth/presentation/signup_screen.dart b/userfront/lib/features/auth/presentation/signup_screen.dart index 400106c0..eefa7a6f 100644 --- a/userfront/lib/features/auth/presentation/signup_screen.dart +++ b/userfront/lib/features/auth/presentation/signup_screen.dart @@ -353,7 +353,10 @@ class _SignupScreenState extends State { content: Text(tr('msg.userfront.signup.success.body')), actions: [ TextButton( - onPressed: () => context.go(buildLocalizedSigninPath(Uri.base)), + onPressed: () { + Navigator.of(context).pop(); + context.go(buildLocalizedSigninPath(Uri.base)); + }, child: Text(tr('ui.userfront.signup.success.action')), ), ],