From 6c05a911f4374270687b520c2f267add8475cf01 Mon Sep 17 00:00:00 2001 From: Kartik Sharma Date: Thu, 11 Sep 2025 10:08:25 +0530 Subject: [PATCH] =?UTF-8?q?Forgot=20Password=20=E2=80=93=20Reset=20link=20?= =?UTF-8?q?not=20sent,=20error=20shown=20for=20all=20valid=20emails?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/authentication/ForgotPasswordPage.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/authentication/ForgotPasswordPage.jsx b/src/pages/authentication/ForgotPasswordPage.jsx index 8a6fc608..0e234bd3 100644 --- a/src/pages/authentication/ForgotPasswordPage.jsx +++ b/src/pages/authentication/ForgotPasswordPage.jsx @@ -10,7 +10,7 @@ import { z } from "zod"; const forgotPassSceham = z.object({ - email: z.string().email(), + email: z.string().trim().email(), }) const ForgotPasswordPage = () => {