We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3c236d commit 3ef572cCopy full SHA for 3ef572c
src/store/selectors.ts
@@ -38,12 +38,6 @@ export const getCartSavingTotal = (cart: Store['cart']) => {
38
productWithQty.quantity,
39
0
40
);
41
- console.log(
42
- 'getPromoTotal(cart)',
43
- total,
44
- getPromoTotal(cart),
45
- formatPrice(total + getPromoTotal(cart), 2)
46
- );
47
return formatPrice(total, 2);
48
};
49
@@ -56,12 +50,6 @@ export const getCartSavingTotalWithPromo = (cart: Store['cart']) => {
56
50
57
51
58
52
59
60
61
62
63
64
65
53
return formatPrice(total + getPromoTotal(cart), 2);
66
54
67
55
0 commit comments