I want to use firebase phone verification without recaptcha in react native. Below is my code. The code is working properly. But I Don\'t want to use recaptcha. I try deleting i
You can't remove captcha verification using default authentication. Use anonymous authentication to avoid captcha letters to appear. https://firebase.google.com/docs/auth/web/anonymous-auth
But You can also make it invisible like this:
window.recaptchaVerifier = new firebase.auth.RecaptchaVerifier(
"recaptcha-container", {
size: "invisible"
}
);