1
0
forked from baron/baron-sso

/login -> /signin 변경

This commit is contained in:
2026-01-27 14:18:47 +09:00
parent 1c1616de09
commit 1c97731c52
4 changed files with 11 additions and 11 deletions

View File

@@ -257,7 +257,7 @@ class _SignupScreenState extends State<SignupScreen> {
builder: (context) => AlertDialog(
title: const Text('회원가입 완료'),
content: const Text('성공적으로 가입되었습니다.'),
actions: [TextButton(onPressed: () => context.go('/login'), child: const Text('로그인하기'))],
actions: [TextButton(onPressed: () => context.go('/signin'), child: const Text('로그인하기'))],
),
);
}