From bafe3f9c45d79f4de9932539e3fc38383c0ba5f5 Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Date: Tue, 25 Jun 2024 19:23:58 +0530 Subject: [PATCH] fix: password strength banner validation (#4935) --- web/core/components/account/auth-forms/password.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/core/components/account/auth-forms/password.tsx b/web/core/components/account/auth-forms/password.tsx index 8d3f945c7..7645f1a94 100644 --- a/web/core/components/account/auth-forms/password.tsx +++ b/web/core/components/account/auth-forms/password.tsx @@ -117,7 +117,7 @@ export const AuthPasswordForm: React.FC = observer((props: Props) => { return ( <> - {isBannerMessage && ( + {isBannerMessage && mode === EAuthModes.SIGN_UP && (