Hello all, i’m trying to use netlify forms with a gatsby site however on every form submission, i seem to get an error 404 but i am still redirected to the thank you page.
For each service, I am using a Form component that outputs a different form based on a selected form from a CMS, (different form names, different fields, etc)
I’m using the required attributes:
<form
style={{ maxWidth: "600px", margin: "0 auto" }}
name={formName}
method="post"
data-netlify="true"
data-netlify-honeypot="bot-field"
action="/thank-you"
>
<input type="hidden" name="bot-field" />
<input type="hidden" name="form-name" value={formName} />
... other fields
</form>
Here’s a link to the Form code: https://github.com/web-disco-studio/carlawft-studios/blob/main/src/components/ServiceForm.jsx
Here’s a link to the live site, just click the “Book Now” button to promt the form: https://mystifying-stonebraker-57747c.netlify.app/services/engineering-recording
If anyone could help figure this out that’d be greatly appreciated,
Thanks in advance!