Created
October 9, 2021 14:44
-
-
Save Klerith/e773fb7c2d9e04da9bfae76d38492771 to your computer and use it in GitHub Desktop.
Formik Email Validation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (!values.email) { | |
errors.email = 'Required'; | |
} else if (!/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i.test(values.email)) { | |
errors.email = 'Invalid email address'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment