Running multiple queries based on search params
Hey, I want to have multiple and changing search params stored in the URL, then I want to get them in server component to prefetch the data
then later in same Page component
I wrap data in HydrationBoundry and I want to have a fallback using Suspense, so I don't have to keep checking for values in my client component
I am also using
This is throwing me a bunch of errors to the console,
and
Am I doing something wrong here?
then later in same Page component
I wrap data in HydrationBoundry and I want to have a fallback using Suspense, so I don't have to keep checking for values in my client component
I am also using
lukemorales/query-key-factory This is throwing me a bunch of errors to the console,
Uncaught Error: Server Functions cannot be called during initial render. This would create a fetch waterfall. Try to use a Server Component to pass data to Client Components instead.and
Warning: Cannot update a component (Router) while rendering a different component (DisplayData). To locate the bad setState() call inside DisplayData, follow the stack trace as described inAm I doing something wrong here?