Skip to content

Instantly share code, notes, and snippets.

@MrGrootx
Created February 13, 2024 05:00
Show Gist options
  • Select an option

  • Save MrGrootx/e995fc8e8607161ab94cd2b1d6114f76 to your computer and use it in GitHub Desktop.

Select an option

Save MrGrootx/e995fc8e8607161ab94cd2b1d6114f76 to your computer and use it in GitHub Desktop.
react-hooks-form (email validation) with zod
email: z
.string()
.email({
message: "Enter a valid email address",
required_error: "email requried",
})
.trim()
.toLowerCase(),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment