diff --git a/src/fmg-components/cart/cart.vue b/src/fmg-components/cart/cart.vue index c791e3941..d0f4d6ed4 100644 --- a/src/fmg-components/cart/cart.vue +++ b/src/fmg-components/cart/cart.vue @@ -999,11 +999,6 @@ export default { }, subTotal() { if (!this.lineItems || this.lineItems.length < 1) return; - if (this.isInsurance || !this.shouldHideRecalibration) { - console.log(" first this.lineItems: ", this.lineItems) - } else { - console.log(" 2nd this.lineItemsWithoutRecal: ", this.lineItemsWithoutRecal) - } return this.isInsurance || !this.shouldHideRecalibration ? baseMixin.methods.getSubTotal(this.lineItems) // calculate with recal (if on order) : baseMixin.methods.getSubTotal(this.lineItemsWithoutRecal); // calculated without recal diff --git a/src/layouts/quote/quote.vue b/src/layouts/quote/quote.vue index 88ea3ddc7..3d539e630 100644 --- a/src/layouts/quote/quote.vue +++ b/src/layouts/quote/quote.vue @@ -44,9 +44,7 @@