1
0
mirror of https://github.com/vercel/commerce.git synced 2025-05-14 13:47:49 +00:00

swapping max to minVarPrice

This commit is contained in:
Samantha Kellow 2023-11-24 12:05:00 +00:00
parent 09e1cf2ef2
commit 8daeb7848c

@ -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}