Fixed some calculation issues 2

This commit is contained in:
Leah Schumann 2023-11-06 08:21:35 -05:00
parent 738ffbe843
commit 3471b6e514

View file

@ -176,8 +176,6 @@ export default {
return vapsTypeName.Text;
},
removeItem(cartItemType, category) {
console.log("removeItem")
console.log(`cartItemType: ${cartItemType}, category: ${category}`)
this.lineItems[category] = this.lineItems[category].filter(
(lineItemsToKeep) => lineItemsToKeep.cartItemType != cartItemType
);