Shri

Results 21 comments of Shri

I suspect the following line of code in fastifyCookieSetCookie function might be something on the issue? ![image](https://user-images.githubusercontent.com/35889246/196160533-88955810-0948-4563-8664-494d25c65a2f.png) Maybe "Set-Cookie" case sensitive? Hence resulting in a failure of this condition.

@mcollina I was able to temporarily fix this by adding the following to line 36 of the file `plugin.js`: ``` else { setCookie.forEach((serializedCookie, index) => { const parsedSetCookie = cookie.parse(serializedCookie)...

Why do you think so? Typically, I don't expect a lot of elements in this cookie array.

Maybe yes, in the grand scheme of things with several thousands of requests :)

![image](https://user-images.githubusercontent.com/35889246/196192165-2665729a-d22e-4275-96ba-a09a9388b66f.png) Something like this?

@MenaiAla I just realized the close button appears only on hover :). Weird that the documentation of Sonner makes it look like the close button is there always. And in...

> I have this same issue. Using React-Select inside any modal breaks keyboard navigation. Related issue here: https://github.com/JedWatson/react-select/issues/5377 @rbracco your video shows precisely what I am experiencing! With radix UI...

> Yeah unfortunately it seems most issues are not being responded to. That tends to happen with long-term open-source projects, people eventually move on. > > > > I did...

Hello @rbracco , Do you use `react-hook-forms` on your side? If yes, I found a hacky but very reliable solution to this: ```ts const form = useFormz(/* your form options...