useForm to create is using GET instead of POST or PUT
I have a simple form which uses the useForm hook to create one of my resources. It correctly finds the create route, but it arrives as a GET instead of a POST or PUT. Because I'm using remix, that means that the action method (which is what should be handling the POST) never gets called.
