Skip to content

How to force form isDirty to reset when new data is available #60

Closed Answered by jseparovic
jseparovic asked this question in Q&A
Discussion options

You must be logged in to vote

Just needed to reset the form state and pass in the new instance for resetting the default values:

    useEffect(() => {
        if(form) {
            form.reset(instance);
        }
    }, [instance])

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by jseparovic
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant