From f431600ce4067b00724dbcf0727caaddd90a73c1 Mon Sep 17 00:00:00 2001 From: Zack Tanner Date: Tue, 5 Dec 2023 20:39:45 -0800 Subject: [PATCH] Revert "added comma to the props list" (#59314) Reverts vercel/next.js#58596 This is failing lint checks [x-ref](https://github.com/vercel/next.js/actions/runs/7109843046/job/19355454595) --- docs/02-app/02-api-reference/02-file-conventions/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02-app/02-api-reference/02-file-conventions/page.mdx b/docs/02-app/02-api-reference/02-file-conventions/page.mdx index f32a65caeff66..e1cfa04de45b0 100644 --- a/docs/02-app/02-api-reference/02-file-conventions/page.mdx +++ b/docs/02-app/02-api-reference/02-file-conventions/page.mdx @@ -10,7 +10,7 @@ export default function Page({ params, searchParams, }: { - params: { slug: string }, + params: { slug: string } searchParams: { [key: string]: string | string[] | undefined } }) { return

My Page