chore: refactor

This commit is contained in:
Catalin Pit
2024-01-26 13:27:36 +02:00
parent e2fa01509d
commit b2cca9afb6
6 changed files with 13 additions and 10 deletions

View File

@ -134,7 +134,7 @@ export const SignInForm = ({ className, isGoogleSSOEnabled }: SignInFormProps) =
if (result.error === ErrorCode.UNVERIFIED_EMAIL) {
const encryptedEmail = await encryptSecondaryData({ data: email });
router.push(`/unverified-account?t=${encryptedEmail}`);
router.push(`/unverified-account?token=${encryptedEmail}`);
return;
}