pwliuab

Results 10 comments of pwliuab

you can search pull request, change the original index file to that version, I have made a pull request to solve this problem.

> im new, how do you pull this as an import CountDown from 'react-native-countdown-component'; ? or do i need to reinstall the whole library but with your branch? how do...

you should link react-native-fs to your project

R.I.P

same, I have experienced this before. Seems the context is not unmounted, which causes null or undefined checking of executeRecaptcha valid. However, the actual js codes are not loaded.

i suggest either try catch refresh or wait for a while to reduce the chances of triggering this error: ` try { await new Promise((resolve, reject) => { setTimeout(() =>...

or u can add this line of code before execution: ` if (!executeRecaptcha) window.grecaptcha = undefined; `

you could try reset `window.grecaptcha` to undefined if `executeRecaptcha `is undefined : ``` const handleReCaptchaVerify = useCallback(async () => { if (!executeRecaptcha) { window.grecaptcha = undefined; return; } try {...

Please note that you should load this reCAPTCHA component when the page starts loading. If you wrap your UI component with reCAPTCHA and perform lazy loading when the user navigates...

If it is in parallel, every instance can acquire a lock which is another race condtion again. e.g. A,B,C,D acquire the same lock at the same time. If it is...