@nuskin/ns-shop 7.2.5 → 7.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/cart/cartService.js +1 -1
package/package.json
CHANGED
package/src/cart/cartService.js
CHANGED
|
@@ -821,7 +821,7 @@ function syncCartItemToSapItem(sapItemKey, cartItemKey = null) {
|
|
|
821
821
|
cartItem.qtyRedeemWithPoints = sapItem.qtyRedeemWithPoints;
|
|
822
822
|
cartItem.product.subPriceFlag = sapItem.product.subPriceFlag;
|
|
823
823
|
cart.addCartItem(cartItem, true);
|
|
824
|
-
setCart(cart);
|
|
824
|
+
setCart(cart, false);
|
|
825
825
|
}
|
|
826
826
|
}
|
|
827
827
|
|