Skip to content

Instantly share code, notes, and snippets.

@hoodwink73
Created October 24, 2019 09:15
Show Gist options
  • Save hoodwink73/9255be509d50061dd30fd89a4ab48d5e to your computer and use it in GitHub Desktop.
Save hoodwink73/9255be509d50061dd30fd89a4ab48d5e to your computer and use it in GitHub Desktop.
Utility fns while using Formik
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