From bb1d92bfb60f16df3a23bf34b073b71f758056dc Mon Sep 17 00:00:00 2001 From: effem Date: Mon, 8 Apr 2024 18:26:51 -0700 Subject: [PATCH] work around --- app/(sanity)/studio/[[...tool]]/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/(sanity)/studio/[[...tool]]/page.tsx b/app/(sanity)/studio/[[...tool]]/page.tsx index 58f5cc5..78fae44 100644 --- a/app/(sanity)/studio/[[...tool]]/page.tsx +++ b/app/(sanity)/studio/[[...tool]]/page.tsx @@ -9,6 +9,6 @@ export default function StudioPage() { } export function generateStaticParams() { - const pages = ['Presentation', 'Vision', 'Structure']; + const pages = ['studio']; return pages.map((page) => ({ name: page })); }