From 07dfc2176e97ca01394ad2472ad6d29f7392a2d9 Mon Sep 17 00:00:00 2001 From: Loan Laux Date: Thu, 8 Jul 2021 18:05:41 +0300 Subject: [PATCH] remove console.log statement Signed-off-by: Loan Laux --- components/product/ProductSidebar/ProductSidebar.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/components/product/ProductSidebar/ProductSidebar.tsx b/components/product/ProductSidebar/ProductSidebar.tsx index c65290754..9482f2b67 100644 --- a/components/product/ProductSidebar/ProductSidebar.tsx +++ b/components/product/ProductSidebar/ProductSidebar.tsx @@ -29,9 +29,6 @@ const ProductSidebar: FC = ({ product, className }) => { const addToCart = async () => { setLoading(true) try { - console.log("product", product) - console.log("variant", variant) - await addItem({ productId: String(product.id), variantId: String(variant ? variant.id : product.variants[0].id),