79350708

Date: 2025-01-12 21:02:57
Score: 0.5
Natty:
Report link

What you need is to manually resolve the async PageParams. This is what worked for me-

interface PageProps {
   searchParams: Promise<{
       [key: string]: string | string[] | undefined;
   }>;
  }

const Page = async ({ searchParams }: PageProps) => {
   const resolvedSearchParams = await searchParams;
    const { id } = resolvedSearchParams;
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): What you
  • Low reputation (1):
Posted by: Siddhant Gupta