Christian Medina

Results 4 comments of Christian Medina

Hi @rharkor, can you elaborate on the issue a bit more? I've been using Turbopack just fine in multiple projects without error (Next 14.1.0). Can you post what version of...

Ah, this isn't an issue with Turbopack. NextUI does use client-side hooks (createContext) and by default Next.js pages are server components which will cause this error. You need to add...

The maintainers could mark the specific components that utilize the client-side hooks with `'use client'` but I'm not sure if there's reasoning for leaving them as server components so I...

Hi all, While sudongyuer's PR is being reviewed, the following can be used as a workaround. Add the following as an item to your `Select` component: ```TS Enter your placeholder...