Created
October 24, 2019 09:15
-
-
Save hoodwink73/9255be509d50061dd30fd89a4ab48d5e to your computer and use it in GitHub Desktop.
Utility fns while using Formik
This file contains hidden or 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
const shouldShowError = () => { | |
var { touched, errors } = form; | |
return Object.entries(touched).some( | |
([key, value]) => value && errors[key] | |
); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment