From 292a2d3f33f346578dc73a428d6d4e603915e196 Mon Sep 17 00:00:00 2001 From: Christopher Arraya <arrayacj@gmail.com> Date: Sun, 30 Jul 2023 01:03:33 -0400 Subject: [PATCH] chore(client): change alert message --- app/login/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/login/page.tsx b/app/login/page.tsx index 06e8cdb..5e88223 100644 --- a/app/login/page.tsx +++ b/app/login/page.tsx @@ -52,6 +52,7 @@ export default function Login() { emailRedirectTo: `${location.origin}/auth/callback`, }, }); + console.log(res); if (res.error) throw res.error; setEmail(email); setView("check-email"); @@ -109,7 +110,7 @@ export default function Login() { <AlertCircle className="h-4 w-4" /> <AlertTitle>Error</AlertTitle> <AlertDescription> - The email or password you entered is incorrect. + There has been an error. Please try again later. </AlertDescription> </Alert> )}