From 33836a34855ece80be5a762c56fc88dc779c2fab Mon Sep 17 00:00:00 2001 From: jrphilo Date: Mon, 8 Jul 2024 09:24:32 +0200 Subject: [PATCH] fix: remove console logs Signed-off-by: jrphilo --- components/product/variant-selector.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/product/variant-selector.tsx b/components/product/variant-selector.tsx index ff66c0fd9..6e05a898d 100644 --- a/components/product/variant-selector.tsx +++ b/components/product/variant-selector.tsx @@ -123,8 +123,6 @@ export function VariantSelector({ className="flex-grow flex-col space-y-4 overflow-auto px-2 py-4" > {option.values.map((value) => { - console.log('option', option); - console.log('variants', variants); const optionNameLowerCase = option.name.toLowerCase(); const optionSearchParams = new URLSearchParams(searchParams.toString());