Paweł Stachula

Results 6 comments of Paweł Stachula

I also need this option. The problem is when I must create an atom component built with Primitives. Now there is `Select` name conflict. This option will be beneficial for...

OMG I looking for a solution to this problem for few hours, this error is ridiculous. Thanks a lot for your help!

It looks simillar: https://github.com/remix-run/remix/issues/10113

This looks like a intentional solution. 🤔 ```ts /** * Return first 5XX or 4XX response (in that order) from a Response Object Map */ export type ErrorResponse = FilterKeys<...

@CharlieZhuo @TheCeloReis You can just create `fetch` instance constructor: ```ts const fetchClient = createClient({ baseUrl: process.env.NEXT_PUBLIC_API_URL, fetch: (...args) => fetch(...args), }); ```