79299891

Date: 2024-12-21 18:20:46
Score: 1
Natty:
Report link
import { z } from "zod";

export const LoginRequest = z.object({
  email: z.string(),
  password: z.string(),
  remember: z.boolean(),
}).required({
  email: true,
  password: true,
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Bishwajit Adhikary