howdy! any changes on this at all? still experiencing the same? I have asked around but i am not hearing any work having being rolled out that might effect this, so i am wondering if it is something specific to your project. any thoughts?
Your form is very different from Netlify standards. In Netlify, to link your form and the dashboard you need to add some metadata and meta attributes, such as data-netlify="true" , data-netlify-honeypot="bot-field" (to avoid SPAM) and a name attribute with exactly the same name than your Netlify form in your dashboard. It must look like:
<form name="contact" method="post" data-netlify="true" data-netlify-honeypot="bot-field">
{/* You still need to add the hidden input with the form name to your JSX form */}
<input type="hidden" name="form-name" value="contact" />
...
</form>