fix: change password max length validation (#616)

pull/623/head
Zeng1998 2 years ago committed by GitHub
parent f883dd9c1d
commit 40e92f9463
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,7 +8,7 @@ import toastHelper from "./Toast";
const validateConfig: ValidatorConfig = { const validateConfig: ValidatorConfig = {
minLength: 4, minLength: 4,
maxLength: 24, maxLength: 320,
noSpace: true, noSpace: true,
noChinese: true, noChinese: true,
}; };

Loading…
Cancel
Save