From fe58c1e1c3e9e31f2df20cfa4c503fb8b6f774fd Mon Sep 17 00:00:00 2001 From: Chris Redelinghuys Date: Fri, 26 Sep 2025 09:07:09 -0400 Subject: [PATCH] CASH-1550: Allow Afterpay breakout on recal vehicles --- src/layouts/payment-method/payment-method.vue | 2 +- .../quote/service-package-question/service-package-question.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index d42cecc01..f1bb25810 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -836,7 +836,7 @@ export default { isAfterpayBreakoutDisplay() { return ( this.showInsuranceCoverageAs !== coverageStatus.PENDING && - (!this.isRecalPriceRemove || !this.isRecalibrationOnOrder) && + !this.isRecalPriceRemove && this.hasSettingEqualTo(experimentSettings.DISPLAY_AFTERPAY_BREAKOUT_DISPLAY, "true") ); }, diff --git a/src/layouts/quote/service-package-question/service-package-question.vue b/src/layouts/quote/service-package-question/service-package-question.vue index 1ea1b7cf2..e5c429646 100644 --- a/src/layouts/quote/service-package-question/service-package-question.vue +++ b/src/layouts/quote/service-package-question/service-package-question.vue @@ -246,7 +246,7 @@ export default { }, isAfterpayBreakoutDisplay() { return ( - (!this.shouldHideRecalibration || !this.isRecalibrationOnOrder) && + !this.shouldHideRecalibration && experimentMixin.methods.hasSettingEqualTo( experimentSettings.DISPLAY_AFTERPAY_BREAKOUT_DISPLAY, "true"