From 311eef6aea2facbd0109f6d744d6b0fc7c22fcf3 Mon Sep 17 00:00:00 2001 From: christopheresivwekpe Date: Fri, 8 Dec 2023 13:16:31 +0100 Subject: [PATCH] Forget password issue fixed --- .../app/(auth)/forget-password/(components)/CheckEmailPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/app/(auth)/forget-password/(components)/CheckEmailPage.tsx b/apps/web/app/(auth)/forget-password/(components)/CheckEmailPage.tsx index b3b5869a..6d511995 100644 --- a/apps/web/app/(auth)/forget-password/(components)/CheckEmailPage.tsx +++ b/apps/web/app/(auth)/forget-password/(components)/CheckEmailPage.tsx @@ -9,7 +9,7 @@ import { useServerAction } from '@/hooks' import { getStorage } from '@/config/webStorage' const CheckEmailPage = () => { - const email = getStorage('aperta-user-email', false, 'session'); + const email = getStorage('aperta-user-email', true, 'session'); const openEmailInbox = () => { const mailtoLink = `mailto:${email}`;