1
0
mirror of https://github.com/vercel/commerce.git synced 2025-08-03 07:21:24 +00:00

fix: show variant name in cart

This commit is contained in:
Victor Gerbrands
2023-05-12 13:13:19 +02:00
parent 2edef84866
commit d9e00ff560

@@ -145,7 +145,7 @@ const reshapeLineItem = (lineItem: MedusaLineItem): CartItem => {
id: lineItem.variant_id || lineItem.id, id: lineItem.variant_id || lineItem.id,
selectedOptions, selectedOptions,
product, product,
title: lineItem.title title: lineItem.description ?? ''
}; };
const cost = { const cost = {