Skip to content

Commit 3ef572c

Browse files
committed
remove console log
1 parent e3c236d commit 3ef572c

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/store/selectors.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,6 @@ export const getCartSavingTotal = (cart: Store['cart']) => {
3838
productWithQty.quantity,
3939
0
4040
);
41-
console.log(
42-
'getPromoTotal(cart)',
43-
total,
44-
getPromoTotal(cart),
45-
formatPrice(total + getPromoTotal(cart), 2)
46-
);
4741
return formatPrice(total, 2);
4842
};
4943

@@ -56,12 +50,6 @@ export const getCartSavingTotalWithPromo = (cart: Store['cart']) => {
5650
productWithQty.quantity,
5751
0
5852
);
59-
console.log(
60-
'getPromoTotal(cart)',
61-
total,
62-
getPromoTotal(cart),
63-
formatPrice(total + getPromoTotal(cart), 2)
64-
);
6553
return formatPrice(total + getPromoTotal(cart), 2);
6654
};
6755

0 commit comments

Comments
 (0)