Skip to content

Commit

Permalink
fix: quick order pad qty error
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianJiang2021 authored and libruce committed Mar 19, 2024
1 parent 5bfd46d commit b1829ac
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,8 @@ function QuickorderTable({
const currentProduct = cacheProductList.find(
(item: CustomFieldItems) =>
item.node.variantId === row.variantId &&
item.node.productId === row.productId
item.node.productId === row.productId &&
item.node.id === row.id
)

if (currentProduct && currentProduct.node) {
Expand Down

0 comments on commit b1829ac

Please sign in to comment.