From 61a357c1298041d977dca247cf690b01a0e709d3 Mon Sep 17 00:00:00 2001 From: Samantha Kellow Date: Thu, 25 Apr 2024 15:00:20 +0100 Subject: [PATCH] commenting out sustainability info on product page --- components/product/product-description.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/components/product/product-description.tsx b/components/product/product-description.tsx index d9fbf19b7..7b0422ea5 100644 --- a/components/product/product-description.tsx +++ b/components/product/product-description.tsx @@ -1,7 +1,6 @@ import { AddToCart } from 'components/cart/add-to-cart'; import { Product } from 'lib/shopify/types'; import { DescriptionContent } from './description-content'; -import { SustainabilityInfo } from './sustainability-info'; import { VariantDetails } from './variant-details'; export function ProductDescription({ product }: { product: Product }) { @@ -14,7 +13,7 @@ export function ProductDescription({ product }: { product: Product }) { - {!product.tags.includes('wall') && } + {/* {!product.tags.includes('wall') && } */} ); }