I'm using react-custom-validation@0.5.7 and react@16.3.1.
This happens when submit occurs while the validation result is still undetermined.
The following events happen in the library:
dispatchUpdate is called from setTimeout
- form is valid so
onValid gets called and changes the redux state
- change in redux state causes
render of the parent of validate form
- this causes call of
componentWillReceiveProps in validated HOC
dispatchUpdate is called again but the register is still in submitting state (call of onValid has not finished yet)
I was able to reproduce this issue only when running cypress tests as the async validation is quite fast.