From 3269bbb981b24e147eb0ba8a347a295bd289dddc Mon Sep 17 00:00:00 2001 From: kyy Date: Fri, 20 Mar 2026 16:27:15 +0900 Subject: [PATCH] =?UTF-8?q?=ED=9A=8C=EC=9B=90=EA=B0=80=EC=9E=85=20?= =?UTF-8?q?=EC=99=84=EB=A3=8C=20=EC=95=8C=EB=A6=BC=EC=B0=BD=20=EB=AC=B8?= =?UTF-8?q?=EC=A0=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- userfront/lib/features/auth/presentation/signup_screen.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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')), ), ],