bluefire2121

Results 19 comments of bluefire2121

> @mesh-newbie If you want to use Muuri with React you can try to use the [`react-muuri`](https://github.com/mjtischler/react-muuri) fork by @mjtischler or you can use Muuri like any third party lib...

> > @mesh-newbie If you want to use Muuri with React you can try to use the [`react-muuri`](https://github.com/mjtischler/react-muuri) fork by @mjtischler or you can use Muuri like any third party...

Thanks @martynasma , I've tried a similar setup in the past with the difference being an absolute value and checking specifically if end and start are numbers and are not...

Any update on the LinkedIn Strategy export?

Any updates on this addition?

A work-around... 1. npx create-remix@latest with VPN off 2. when the "select which folder you want to install remix" cli screen appears, turn VPN on

I'm having this issue on Windows. Was working in 1.14.3, no longer working. Currently using 1.16.0. Update: This works for me in 1.16.0. My issue was that I was using...

Very cool! I guess you can do this as well. ```tsx const [isPending, startTransition] = useTransition() startTransition(async () => { const [more, stuff] = await Promise.all([fetcher.submit({ stuff }, { method:...

@sergiodxa - so in 2.0 the callbackURL and ResponseTypes are gone? ```tsx type ResponseType = "id_token" | "token" | "id_token token" | "code" | "code id_token" | "code id_token token";...

Thanks @sergiodxa for the hint. I updated my loaders & actions to create the strategy on each request: ```tsx const authenticator = await createAuthenticator(request); const user = await authenticator.isAuthenticated(request, {...