jarden-digital/react-native-recaptchav3

Navigation & Redux Action not working while using this plugin

Opened this issue · 0 comments

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;
            }} 
            />