From a05a6ac65c361f26af66873c86637c32b58674e6 Mon Sep 17 00:00:00 2001 From: Victor Gerbrands Date: Wed, 10 May 2023 16:51:43 +0200 Subject: [PATCH] fix: remove console.logs --- app/search/[collection]/page.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/search/[collection]/page.tsx b/app/search/[collection]/page.tsx index 85d7726fc..3f950b9d0 100644 --- a/app/search/[collection]/page.tsx +++ b/app/search/[collection]/page.tsx @@ -12,7 +12,6 @@ export async function generateMetadata({ }: { params: { collection: string }; }): Promise { - console.log({ params }); const collection = await getCategory(params.collection); if (!collection) return notFound(); @@ -34,7 +33,6 @@ export async function generateMetadata({ } export default async function CategoryPage({ params }: { params: { collection: string } }) { - console.log({ collection: params.collection }); const products = await getCategoryProducts(params.collection); return (