tjb

Results 5 comments of tjb

@vivekcontentstack I believe this is because you're passing an inline function into the component prop. The component prop is using React.createElement to create the new element under the hood. That...

The project I'm working on has some large forms with dynamically generated nested field arrays so I figured I'd throw my experience out there in case it helps others. We...

Similar problem, same fix. Working with nested arrays where the inner array is conditional or may be a different shape than its parent seems to cause some of the mutator...

I realize this is rather old at this point but thought it may be worth an attempt to answer for those coming across this. By default anytime a field changes...

I believe you need to explicitly set the form's onSubmit to the FinalFormRenderProps handleSubmit value. Notice how the example from the react-final-form docs sets the `form` element's onSubmit from the...