Anton Ignatev
Anton Ignatev
In my case this error was caused by a mutator, which was called on every `FormSpy` render. I've solved this problem by wrapping the mutator call inside a `useLayoutEffect` and...
For anyone who stumbles upon this - here's a brief explanation of all the 3 approaches that @satya164 has mentioned. I was testing it with a UI module which is...
I'm also experiencing constant jumps and flickers on mobile browsers only. In my use case I have a chat with various types of messages, including images, but every message is...
A few years have passed, react-router now supports react-suspense and implements data-fetching similar to how found does it, but in the end react-router still lacks a lot of functionality, therefore...
Any news? Stumbled upon this after migrating from redux-form to react-final-form. Useful to mention that redux-form resets the submitErrors upon change and it solves this problem. Is there any reason...
For anyone landing here, I have made a simple helper for clearing the errors after submit. https://github.com/ignatevdev/final-form-submit-errors It basically listens for changes in your form and tries to detect if...