Hello I added ReCaptcha for my form its imported from react Recaptcha when I hit submit the I cant find the submission in netlify form but when I remove the Recaptcha the form works
Here is my code
import ReCAPTCHA from "react-google-recaptcha";
<form
onSubmit={handleSubmit}
name="partner"
method="post"
data-netlify="true"
data-netlify-honeypot="bot-field"
>
<input type="hidden" name="form-name" value="partner" />
<ReCAPTCHA
sitekey="6LdwPXYbAAAcccccccccccccccccccc"
render="explicit"
verifyCallback={verifyCallback}
onloadCallback={callback}
/>
</form>