Skip to content

Commit

Permalink
chore: linter 🧽
Browse files Browse the repository at this point in the history
  • Loading branch information
gioboa committed Jun 18, 2024
1 parent 6dcbfca commit 6465b16
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ const LoginSchema = v.object({
email: v.pipe(
v.string(),
v.minLength(1, 'Please enter your email.'),
v.email('The email address is badly formatted.'),
v.email('The email address is badly formatted.')
),
password: v.pipe(
v.string(),
v.minLength(1, 'Please enter your password.'),
v.minLength(8, 'Your password must have 8 characters or more.'),
v.minLength(8, 'Your password must have 8 characters or more.')
),
});

Expand Down

0 comments on commit 6465b16

Please sign in to comment.