From 5bcf42d3985b766d7823addf12fee20137c488fb Mon Sep 17 00:00:00 2001 From: palash-signoz Date: Tue, 3 May 2022 17:10:39 +0530 Subject: [PATCH] chore: isPasswordNotValidMessage is updated (#1030) --- frontend/src/pages/SignUp/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/SignUp/utils.ts b/frontend/src/pages/SignUp/utils.ts index 9c09fe1164..a71c4029cf 100644 --- a/frontend/src/pages/SignUp/utils.ts +++ b/frontend/src/pages/SignUp/utils.ts @@ -12,4 +12,4 @@ export const isPasswordValid = (value: string): boolean => { return pattern.test(value); }; -export const isPasswordNotValidMessage = `Password must a have minimum of 8 characters with at least one lower case, one upper case and one special character`; +export const isPasswordNotValidMessage = `Password must a have minimum of 8 characters with at least one lower case, one number ,one upper case and one special character`;