Skip to content

Commit

Permalink
fix: shopping list number update
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianJiang2021 authored and libruce committed Feb 22, 2024
1 parent 75122c9 commit 8b8c57b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ function ShoppingDetailTable(

const itemData: CustomFieldItems = {
variantId: currentNode?.variantId,
quantity: currentNode?.quantity,
quantity: currentNode?.quantity ? +currentNode.quantity : 0,
optionList: optionsList || [],
productNote: notes,
}
Expand Down

0 comments on commit 8b8c57b

Please sign in to comment.