Replies: 1 comment 3 replies
-
I can't get a good view of your hierarchy from this gif because it scrolls so quickly through the graph, but this problem is usually indicative of an element creating a new element on each render that cannot be determined by React to be the same (same key, etc). Usually this happens if you do something like: const getForm = () => <Formik />;
const MyPage = () => {
const MyForm = getForm();
return <div>{ MyForm }</div>;
} It also happens frequently when using |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For some weird reason, every time I click on the page that has Formik rendered, it will cause Formik to re-render.
Any clues why this is happening? I tried to set "validateOnBlur = false" but that did not work.
Beta Was this translation helpful? Give feedback.
All reactions