commit 1c92825ed08f60f9c60ed018b73b94e1d843a3ba parent 26dbbcf419e346f0c9bbe6133bb3e17b14268022 Author: Sebastian <sebasjm@gmail.com> Date: Sun, 27 Apr 2025 21:11:52 -0300 fix #9571 Diffstat:
| M | packages/aml-backoffice-ui/src/pages/CreateAccount.tsx | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/packages/aml-backoffice-ui/src/pages/CreateAccount.tsx b/packages/aml-backoffice-ui/src/pages/CreateAccount.tsx @@ -53,8 +53,8 @@ const createAccountForm = ( ? i18n.str`required` : allowInsecurePassword ? undefined - : value.length < 8 - ? i18n.str`should have at least 8 characters` + : value.length < 12 + ? i18n.str`should have at least 12 characters` : !value.match(/[a-z]/) && value.match(/[A-Z]/) ? i18n.str`should have lowercase and uppercase characters` : !value.match(/\d/)