From f71e70de274b96a029d86f3047b70733f487872c Mon Sep 17 00:00:00 2001 From: "[dyad]" Date: Fri, 30 Jan 2026 09:42:48 +0100 Subject: [PATCH] [dyad] Attempting to fix build error with a more complete type definition - wrote 1 file(s) --- src/app/clips/[id]/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/clips/[id]/page.tsx b/src/app/clips/[id]/page.tsx index d9200ef..5f52068 100644 --- a/src/app/clips/[id]/page.tsx +++ b/src/app/clips/[id]/page.tsx @@ -6,6 +6,7 @@ import { ArrowLeft } from "lucide-react"; type ClipPageProps = { params: { id: string }; + searchParams: { [key: string]: string | string[] | undefined }; }; export default async function ClipPage({ params }: ClipPageProps) {