I usually start with this. Begin with niceties, and ramp up to lots of expletives!
A quick look through the repository and I don’t see a HTML form, i.e. a plain HTML form. As you are working React the Work with JavaScript-rendered forms is the place to look which says:
Create a hidden HTML form with the data-netlify="true" attribute or a netlify attribute and input fields with name attributes to match the inputs of your JavaScript-rendered form.
You can add this form to the index.html in the public directory, or any other .html file in public so it is copied during build. Netlify will detect and process the form then. The data-netlify="true" goes on this form, not the main form in the component.
I’m a little confuzzled on your answer. So you’re saying I should create a 2nd form in the /public folder which has the bare minimum, while keeping the custom form i’ve created. Somehow this will work?
I can barely operate a fork let alone get this code to work. I’m going to have form submissions sent through firebase I think. Thanks very much for your time
So you’re saying all I need to do is add this code to /public, and remove the attributes from the ContactForm component, and it should work with no extra steps?
Edit: Added this code, and it shows form submissions are now enabled. But when submitting form info, it’s not updating on the form submissions sections.
That will depend on whether everything else in your code is correct, which I suggest it isn’t. Have a look over the following article/tutorial (which is where my example is taken from, though implemented slightly differently)