You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The length of value must be greater than or equal to expected value
{ maxLength: 8 }
minLength
The length of value must be lesser than or equal to expected value
{ minLength: 8 }
But in reality, the descriptions are the opposite. maxLength requires the value to be less than or equal to maxLength. minLength requires the value to be greater than or equal to minLength.
The text was updated successfully, but these errors were encountered:
readme has:
maxLength
The length of value must be greater than or equal to expected value
{ maxLength: 8 }
minLength
The length of value must be lesser than or equal to expected value
{ minLength: 8 }
But in reality, the descriptions are the opposite. maxLength requires the value to be less than or equal to maxLength. minLength requires the value to be greater than or equal to minLength.
The text was updated successfully, but these errors were encountered: