Hi every I hope your doing well, I'm having an issue with my re-captcha and some how the missing styling it happens on every IOS Devices while all the desktop browsers(linux, windows and mac) and android devices are working fine. I'd like to know your all thought on this issue. Thank you.
I use the basic usage of react-google-recaptcha:
import ReCAPTCHA from "react-google-recaptcha";
function onChange(value) {
console.log("Captcha value:", value);
}
ReactDOM.render(
<ReCAPTCHA
sitekey="Your client site key"
onChange={onChange}
/>,
document.body
);