use minPrice for display price

Signed-off-by: Loan Laux <loan@outgrow.io>
This commit is contained in:
Loan Laux 2021-05-12 13:59:47 +04:00
parent 76bb0c7e5d
commit b5559cc492
No known key found for this signature in database
GPG Key ID: AF9E9BD6548AD52E

View File

@ -139,7 +139,7 @@ export function normalizeProduct(productNode: CatalogItemProduct): Product {
images: media?.length ? normalizeProductImages(media, title ?? '') : [],
vendor: product.vendor,
price: {
value: pricing[0]?.price ?? 0,
value: pricing[0]?.minPrice ?? 0,
currencyCode: pricing[0]?.currency.code,
},
variants: variants?.length ? normalizeProductVariants(variants) : [],