From df1878d845dae17053cc72af973ec97be3f1f1ca Mon Sep 17 00:00:00 2001 From: Jerry Zhang Date: Mon, 8 Jul 2024 19:35:10 -0400 Subject: [PATCH] Update page.tsx --- app/products/[productId]/page.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/products/[productId]/page.tsx b/app/products/[productId]/page.tsx index 1c05d36..89f4ba8 100644 --- a/app/products/[productId]/page.tsx +++ b/app/products/[productId]/page.tsx @@ -34,8 +34,6 @@ async function getBike(productId: string) { } export async function generateStaticParams() { - // If you have a fixed set of product IDs, you can return them here - // Otherwise, return an empty array and handle dynamic routes return []; }