I\'m using a custom component with react-final-form. On input change it sets the value to the address field. But when the input is cleared it doesn
react-final-form
address
You can just call form.change('address', undefined) at any time that you'd like to clear the value.
form.change('address', undefined)