diff --git a/app/products/[productId]/page.tsx b/app/products/[productId]/page.tsx index 89f4ba8..ac96ae0 100644 --- a/app/products/[productId]/page.tsx +++ b/app/products/[productId]/page.tsx @@ -33,9 +33,7 @@ async function getBike(productId: string) { return bike; } -export async function generateStaticParams() { - return []; -} + export default async function ProductPage({ params }: { params: { productId: string } }) { const bike = await getBike(params.productId);