so the return allowed that code, I couldn’t put a boolean in the parameters, but that is fine. The issue is it still isn’t getting called even when I pass the captcha.
Code:
$w('#captcha1').onVerified(()=>{
console.log("TEST");
return Promise.resolve();
})
the console.log(“TEST”); is never called even when captcha is verified.
