From 619314731a6d5000322884963d2f827b31ef8c42 Mon Sep 17 00:00:00 2001 From: Johnson Mao <86179381+JohnsonMao@users.noreply.github.com> Date: Sun, 22 Dec 2024 17:07:28 +0800 Subject: [PATCH] fix(signin): open tip modal when create success --- pages/signin/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/pages/signin/index.tsx b/pages/signin/index.tsx index 3f3e16fe..f19ef9c9 100644 --- a/pages/signin/index.tsx +++ b/pages/signin/index.tsx @@ -25,6 +25,7 @@ function SignInPage() { }; try { await updateUser(payload); + setOpen(true); } catch { toast.error('伺服器異常,請稍後再試'); }