Hey everyone!
Our application which uses Recaptcha Enterprise V3 has been throwing errors in some random instances but not always and we can't seem to pinpoint any sort of situation this happens in meaning we can't reproduce the error occurring locally.
The error happening is this on line 476:41 of the script.
d.charCodeAt is not a function. (In 'd.charCodeAt(l)', 'd.charCodeAt' is undefined)
It seems to happening when we are adding the script on mounted of our vue instance.
const recaptchaScript = document.createElement("script");
recaptchaScript.setAttribute("src",'https://www.google.com/recaptcha/enterprise.js?onload=onloadCallback&render=explicit');
document.head.appendChild(recaptchaScript);
Obviously the script is minified so we can't check to see what this "d" which chatAt is being called on.
If anyone has any insights then that would be appreciated, thanks!