Skip to content

Commit

Permalink
Merge pull request #165 from Gauravtb2253/login-message
Browse files Browse the repository at this point in the history
BUG : Fixed visible password length message
  • Loading branch information
Aarzookhunger authored Nov 2, 2024
2 parents ae25f06 + badfb03 commit ccb199d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/auth/signin/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { AtSign, Eye, EyeOff } from "lucide-react";

const signInSchema = z.object({
email: z.string().email("Invalid email address"),
password: z.string().min(6, "Password must be at least 6 characters long"),
password: z.string().min(1, "Invalid Password"),
});

type SignInFormData = z.infer<typeof signInSchema>;
Expand Down

0 comments on commit ccb199d

Please sign in to comment.