diff --git a/src/iss-components/cart-dropdown/cart-dropdown.vue b/src/iss-components/cart-dropdown/cart-dropdown.vue index 13d6a1d9..368b30d3 100644 --- a/src/iss-components/cart-dropdown/cart-dropdown.vue +++ b/src/iss-components/cart-dropdown/cart-dropdown.vue @@ -213,8 +213,10 @@ export default { && (this.deductible == null || !useMainStore().isVerifiedCoverageStatus); }, subTotal() { - // TODO partial calculation for now - return this.showDeductibleLineItem ? this.deductible : this.baseServicePrice; + const basePrice = this.showDeductibleLineItem + ? this.deductible + : this.baseServicePrice; + return basePrice + this.packagePrice; }, salesTax() { return 0; // TODO