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

View File

@ -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 = {