react-final-form-arrays
react-final-form-arrays copied to clipboard
Avoid whole-form validation when no field validation is provided.
Having a default validation function provided - even when no field validator is given - results in whole form validation being triggered each time array items are altered:
https://github.com/final-form/final-form/blob/9c732e27f29e82ea55b7c0f8a6cafb208c96ccb9/src/FinalForm.js#L897
This PR fixes it, by ensuring undefined
is passed in case no validation is provided by the user.