0

regex constant typo fix

This commit is contained in:
dorj222 2023-02-07 17:54:51 +01:00
parent aa2504b354
commit 1d535ea9b5

View File

@ -584,4 +584,4 @@ export const PASSWORD_COMPLEXITY_RULES = [
},
];
export const REGEX_PASSWORD = /^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[!@#$%^&*]).{8,192}$/g;
export const REGEX_PASSWORD = /^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[!@#$%^&*]).{8,192}$/;