Update docs, remove password strong regex, hide tasks (#755)
* Update docs, remove password strong regex, hide tasks * Update docs
This commit is contained in:
@ -53,10 +53,7 @@ const validationSchema = Yup.object()
|
||||
exist: Yup.boolean().required(),
|
||||
email: Yup.string().email('Email must be a valid email').required(),
|
||||
password: Yup.string()
|
||||
.matches(
|
||||
PASSWORD_REGEX,
|
||||
'Password must contain at least 8 characters, one uppercase and one number',
|
||||
)
|
||||
.matches(PASSWORD_REGEX, 'Password must contain at least 8 characters')
|
||||
.required(),
|
||||
})
|
||||
.required();
|
||||
|
||||
Reference in New Issue
Block a user