We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
react-google-recaptcha version: 3.1.0 react-async-script version: N/A
If I load the ReCaptcha, hit submit (taking me to the next page), then click browser back, I get the following error
Cannot read properties of undefined (reading 'clients')
I've tried the following;
window.grecaptcha.reset()
const recaptchaRef = useRef(null); const resetCaptcha = () => { if (recaptchaRef.current) { //@ts-ignore recaptchaRef.current.reset(); } }; <ReCAPTCHA ref={recaptchaRef} hidden={!v3Failed} sitekey="..." onChange={() => { setV2Succeeded(true) resetCaptcha() }} onError={() => setV2Succeeded(false)} onExpired={() => setV2Succeeded(false)} />
The text was updated successfully, but these errors were encountered:
i got the same error have you solved it then tell me pls how to solve this.
Sorry, something went wrong.
I eventually had to remove the component completely when navigating away from the page.
I conditionally rendered my button wrapped in the GoogleRecaptureProvider.
GoogleRecaptureProvider
{activeStep === 2 ? ( <> <GoogleReCaptchaProvider scriptProps={ { async: true, defer: true } } reCaptchaKey="..."> <SubmitButton/> </GoogleReCaptchaProvider> </> ) : <Button> Next </Button>}
If you are using antd's Modal component and encounter issues with delayed rendering or state inconsistency, try adding the forceRender property.
ref
<Modal forceRender {...otherProps}> // add here <Form> {/* Modal Content */} </Form> </Modal>
No branches or pull requests
react-google-recaptcha version: 3.1.0
react-async-script version: N/A
If I load the ReCaptcha, hit submit (taking me to the next page), then click browser back, I get the following error
Cannot read properties of undefined (reading 'clients')
I've tried the following;
window.grecaptcha.reset()
The text was updated successfully, but these errors were encountered: