From 8daeb7848c83b0fc0335c92e57f781fc1b51dc5c Mon Sep 17 00:00:00 2001 From: Samantha Kellow Date: Fri, 24 Nov 2023 12:05:00 +0000 Subject: [PATCH] swapping max to minVarPrice --- components/layout/product-grid-items.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/layout/product-grid-items.tsx b/components/layout/product-grid-items.tsx index b9beecfc4..f729e1274 100644 --- a/components/layout/product-grid-items.tsx +++ b/components/layout/product-grid-items.tsx @@ -13,8 +13,8 @@ export default function ProductGridItems({ products }: { products: Product[] }) alt={product.title} label={{ title: product.title, - amount: product.priceRange.maxVariantPrice.amount, - currencyCode: product.priceRange.maxVariantPrice.currencyCode + amount: product.priceRange.minVariantPrice.amount, + currencyCode: product.priceRange.minVariantPrice.currencyCode }} src={product.featuredImage?.url} width={600}