Navigation & Redux Action not working while using this plugin
Opened this issue · 0 comments
nehagupta1996 commented
I am using this code to generate captcha. but on the same page i am clicking on login or some another button to jump on action . app is crashing. if i remove captcha app is working fine.
<ReCaptchaV3
ref={(ref: RecaptchaV3) => _captchaRef = ref}
action="signinregister"
captchaDomain={'https://example.com'}
siteKey={'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'}
onReceiveToken={(token) => {
console.log('from token', token)
setRecaptcha({ recaptcha: token });
return true;
}}
/>