Text not showing up in Netlify form

Hello, I made a Netlify form on my site. Everything works fine and it shows the name and email that I type into the form, but it doesn’t show the text.
My site can be found here

Here is the form source code (made in react if that changes anything)

function ContactForm() {
    return (
        <div>
            <form name="contact" method="POST" netlify>
                <input type="hidden" name="form-name" value="contact"/>
                <div>
                    <div>
                        <div>
                            <input required placeholder="Enter your name..." type="text" name="name" />
                        </div>
                        <div>
                            <input required placeholder="Enter your email..." type="email" name="email"/>
                        </div>
                    </div>
                    <div>
                        <div>
                            <textarea required placeholder="Make a suggestion, report a bug, or say something nice!" name="message"></textarea> <--- HERE IS WHERE YOU ENTER THE TEXT
                        </div>
                    </div>
                </div>
                <div>
                    <button type="submit">Send</button>
                </div>
            </form>
        </div>
    );
}

(I removed classes on these elements because I used tailwind and there were a lot)

Hey @notjack

Without seeing the original React code, I can only make guesses.

Are the name values the same in the placeholder form as those of the rendered form (is it name="message" in both?)

If you would like reference, check out coelmay/netlify-react-contact for several different version of using a form with Netlify and React.

If you have questions or issues, reply here any time.