diff --git a/src/iss-components/cart-dropdown/cart-dropdown.vue b/src/iss-components/cart-dropdown/cart-dropdown.vue index 48677c2c..d99747a4 100644 --- a/src/iss-components/cart-dropdown/cart-dropdown.vue +++ b/src/iss-components/cart-dropdown/cart-dropdown.vue @@ -193,7 +193,6 @@ export default { isInitiallyExpanded: Boolean, submittedOrder: Object }, - emits: ['deductibleTotalUpdated'], data() { return { isExpanded: this.isInitiallyExpanded, @@ -216,9 +215,7 @@ export default { }, computed: { deductible() { - const newDeductibleTotal = getDeductible(this.cartOrder); - this.$emit('deductibleTotalUpdated', newDeductibleTotal); - return newDeductibleTotal; + return getDeductible(this.cartOrder); }, showDeductibleCartItem() { return this.isUnverified || (!this.isNoComp && !this.isITAC); diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index 6457386f..55e324d3 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -32,8 +32,7 @@ :showDropdownHeader="true" :isInitiallyExpanded="false" recyclingModalCmsWidgetName="RecycleModal" - servicePackageTitleWidgetName="ServicePackageTitle" - @deductibleTotalUpdated="updateDeductibleTotal" /> + servicePackageTitleWidgetName="ServicePackageTitle" />