From 987b4797bb9768d604a237def775135765bf66c7 Mon Sep 17 00:00:00 2001 From: chan Date: Fri, 27 Mar 2026 19:21:33 +0900 Subject: [PATCH] style(userfront): add missing curly braces for flow control structures --- userfront/lib/features/auth/presentation/signup_screen.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/userfront/lib/features/auth/presentation/signup_screen.dart b/userfront/lib/features/auth/presentation/signup_screen.dart index e6fffa74..830c14fe 100644 --- a/userfront/lib/features/auth/presentation/signup_screen.dart +++ b/userfront/lib/features/auth/presentation/signup_screen.dart @@ -1488,8 +1488,9 @@ class _SignupScreenState extends State { .replaceAll('Exception: ', ''), ); } finally { - if (mounted) + if (mounted) { setState(() => _isLoading = false); + } } }, child: const Text('중복 확인'),