Skip to content

Commit

Permalink
fix: show variant name in cart
Browse files Browse the repository at this point in the history
  • Loading branch information
VariableVic committed May 12, 2023
1 parent 2edef84 commit d9e00ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/medusa/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const reshapeLineItem = (lineItem: MedusaLineItem): CartItem => {
id: lineItem.variant_id || lineItem.id,
selectedOptions,
product,
title: lineItem.title
title: lineItem.description ?? ''
};

const cost = {
Expand Down

0 comments on commit d9e00ff

Please sign in to comment.