chore(client): change alert message

This commit is contained in:
Christopher Arraya 2023-07-30 01:03:33 -04:00
parent afd59acf5d
commit 292a2d3f33

View File

@ -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>
)}