diff --git a/apps/web/app/(auth)/auth/login/components/SigninForm.tsx b/apps/web/app/(auth)/auth/login/components/SigninForm.tsx index c54f779b36..cac4af14e5 100644 --- a/apps/web/app/(auth)/auth/login/components/SigninForm.tsx +++ b/apps/web/app/(auth)/auth/login/components/SigninForm.tsx @@ -68,6 +68,11 @@ export const SigninForm = ({ return; } + if (signInResponse?.error === "Email Verification is Pending") { + router.push(`/auth/verification-requested?email=${data.email}`); + return; + } + if (signInResponse?.error) { setLoggingIn(false); setSignInError(signInResponse.error);