Michael Carter
Michael Carter
Looks like `` was not updated to handle `` https://github.com/remix-run/react-router/blob/d9d233c7fbb6f712915e8b0a7c916a69064bfdb9/packages/react-router-dom/index.tsx#L430
It will be part of "Remixing React Router" where they port Remix on top of React Router 6.4 (which was just released). They are working on the port now. I'm...
Have you tried simply including the `` component in your project and removing the protocol check (i.e., always using `ws:`). https://github.com/remix-run/remix/blob/40a7a390063836607c76aad9754b7881f8c82303/packages/remix-react/components.tsx#L1498-L1561
First, I wasn't saying to edit the Remix version, but to copy it into your project. It's a very straightforward component. I have custom LiveReload as well. However, it doesn't...
@petomalina I had to do a similar thing for CodeSandbox. If you look at my `LiveReload` component, you'll see that I had to change the URL since CSB encodes the...
You don't have to maintain a fork. Just copy+paste the file and add it to your own `app/components` folder. We're so used to just npm installing code, that we don't...
Looks like I may have confused the issue. This was about `` and I believe @filipemir is also referring to that, but typed `` as I used that as an...
I see. The issue is that Remix is exporting `JsonFunction`, but it's not exporting as a type. That's why you get a warning with the generator since it creates separate...
I believe a lot of Remix hooks are expecting to interact with Remix endpoints. You can use standard `fetch` to call external API. It may be possible for Remix to...
Yup, that looks like it. It should only override action if not specified in form or submit. Definitely shouldn't clobber the origin if specified.