I have integrated reCAPTCHA v2 with a sign-up form that is using redux-form. The issue I am facing is that when the user submits the form, the reCAPTCHA modal pops up and the redux-form's 'submitting' prop changes from 'false' to 'true', leading to the disabling of the submit button. However, if the user closes the reCAPTCHA modal before completing it, the submit button remains disabled and the modal does not pop back up. Is there a way to automatically reset the 'submitting' prop back to 'false' if the user closes the modal without completing it?