diff --git a/src/fmg-components/cart/cart.vue b/src/fmg-components/cart/cart.vue
index d0f4d6ed4..e841d8849 100644
--- a/src/fmg-components/cart/cart.vue
+++ b/src/fmg-components/cart/cart.vue
@@ -305,9 +305,9 @@ export default {
if (!this.lineItems || this.lineItems.length < 1) return;
const lineItemsCopy = deepClone(this.lineItems);
- lineItemsCopy.supportingItems = lineItemsCopy.supportingItems ? baseMixin.methods.filterOutRecalibration(
- lineItemsCopy?.supportingItems
- ) : [];
+ lineItemsCopy.supportingItems = lineItemsCopy.supportingItems
+ ? baseMixin.methods.filterOutRecalibration(lineItemsCopy?.supportingItems)
+ : [];
return lineItemsCopy;
},
showCoverageAsPending() {
@@ -438,13 +438,15 @@ export default {
packagePrice() {
let packagePrice = 0;
- if (!this.isInsurance && this.shouldHideRecalibration) { // Update packagePrice if Cash only && is part of RemoveRecal experiment
+ if (!this.isInsurance && this.shouldHideRecalibration) {
+ // Update packagePrice if Cash only && is part of RemoveRecal experiment
packagePrice = baseMixin.methods.getTierOnePackagePrice(
baseMixin.methods.filterOutFees(
baseMixin.methods.filterOutRecalibration(this.availableLineItems) // Strip out recal before filtering out fees
)
);
- } else if (!this.showCoverageAsVerified && !this.showCoverageAsPending) { // Update packagePrice if is verified insurance OR if Cash && not part of RemoveRecal experiment
+ } else if (!this.showCoverageAsVerified && !this.showCoverageAsPending) {
+ // Update packagePrice if is verified insurance OR if Cash && not part of RemoveRecal experiment
packagePrice = baseMixin.methods.getTierOnePackagePrice(
baseMixin.methods.filterOutFees(this.availableLineItems)
);
@@ -1001,7 +1003,7 @@ export default {
if (!this.lineItems || this.lineItems.length < 1) return;
return this.isInsurance || !this.shouldHideRecalibration
? baseMixin.methods.getSubTotal(this.lineItems) // calculate with recal (if on order)
- : baseMixin.methods.getSubTotal(this.lineItemsWithoutRecal); // calculated without recal
+ : baseMixin.methods.getSubTotal(this.lineItemsWithoutRecal); // calculate without recal
},
salesTax() {
if (!this.lineItems || this.lineItems.length < 1) return;
diff --git a/src/layouts/confirmation/confirmation.vue b/src/layouts/confirmation/confirmation.vue
index df3a3dfe7..acb97cba2 100644
--- a/src/layouts/confirmation/confirmation.vue
+++ b/src/layouts/confirmation/confirmation.vue
@@ -170,9 +170,7 @@ export default {
},
computed: {
shouldHideRecalibration() {
- return this.getSettingValue(
- experimentSettings.RECAL_PRICE_REMOVE
- );
+ return this.getSettingValue(experimentSettings.RECAL_PRICE_REMOVE);
},
ShowCart() {
if (this.isPia && this.submittedOrder?.settledTenderAmount == 0) {
diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue
index ccf4e1524..85fb84a63 100644
--- a/src/layouts/payment-method/payment-method.vue
+++ b/src/layouts/payment-method/payment-method.vue
@@ -55,7 +55,9 @@
class="service-questions" />