From 9fd8944987a3a6aeee4eb17b3dc4d15e7bdcc0ab Mon Sep 17 00:00:00 2001 From: victorAnumudu Date: Sat, 5 Aug 2023 16:52:20 +0100 Subject: [PATCH] pwd validation msg changed --- src/components/AuthPages/VerifyPassword/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/AuthPages/VerifyPassword/index.jsx b/src/components/AuthPages/VerifyPassword/index.jsx index 37fc6e6..72a209e 100644 --- a/src/components/AuthPages/VerifyPassword/index.jsx +++ b/src/components/AuthPages/VerifyPassword/index.jsx @@ -54,7 +54,7 @@ const VerifyPassword = () => { }, process.env.REACT_APP_RESET_START_ERROR_TIMEOUT); } if(!PasswordValidator(password)){ // CHECKS IF PASSWORD IS VALID - setMsgError("Invalid Password: eg: Password1@"); + setMsgError("Password must contain alphanumeric, uppercase and special character: eg: Password1@"); return setTimeout(() => { setMsgError(null); }, process.env.REACT_APP_RESET_START_ERROR_TIMEOUT);