fix: change password max length validation (#616)

This commit is contained in:
Zeng1998 2022-11-28 19:33:14 +08:00 committed by GitHub
parent f883dd9c1d
commit 40e92f9463
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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