Skip to content

Commit

Permalink
Fix typo in code example of schema guide
Browse files Browse the repository at this point in the history
  • Loading branch information
fabian-hiller committed Sep 6, 2023
1 parent 00d234f commit 247c176
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const LoginSchema = object({
]),
password: string('Your password must be a string.', [
minLength(1, 'Please enter your password.'),
minLength(8, 'You password must have 8 characters or more.'),
minLength(8, 'Your password must have 8 characters or more.'),
]),
});
```
Expand Down

0 comments on commit 247c176

Please sign in to comment.