You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<Gallery /> component uses useProduct hook. This hook uses ProductContext. However, to create the ProductContext - the ProductProvider function uses useSearchParams. As NextJS app router is using server-centric routing this means, that when you call useSearchParams, it will call the server. As per docs, it is mandatory to wrap useSearchParams in the Suspense boundary.
many places where the page or layout is server side rendered, and it uses a client component, the client component is wrapped by Suspense
in product/[handle]
i asked v0 and told me is mistake ?
The text was updated successfully, but these errors were encountered: