diff --git a/src/layouts/tpa-confirmation/tpa-confirmation.vue b/src/layouts/tpa-confirmation/tpa-confirmation.vue
index 57f9e69d..b3889153 100644
--- a/src/layouts/tpa-confirmation/tpa-confirmation.vue
+++ b/src/layouts/tpa-confirmation/tpa-confirmation.vue
@@ -7,10 +7,11 @@
@@ -45,8 +46,8 @@
:customText="orderDetailsTitle"
:marginTopSizeOverride="4" />
@@ -159,7 +160,13 @@ export default {
return useMainStore().order.currentDeductible;
},
deductibleBoxValue() {
- return this.isVerified ? this.formatAmountInDollars(this.currentDeductible) : VERIFYING_COVERAGE;
+ const testVerified = this.isVerified;
+ const testString = VERIFYING_COVERAGE;
+ if (!testVerified) {
+ return testString;
+ }
+ // return this.isVerified ? this.formatAmountInDollars(this.currentDeductible) : VERIFYING_COVERAGE;
+ return this.formatAmountInDollars(this.currentDeductible);
},
tpaConfirmationHeaderText() {
return this.getCmsContent('TPAConfirmationContent', 'HeaderText');
@@ -184,7 +191,7 @@ export default {
}
},
mounted() {
- this.$refs.siteFooter?.updateButtonText(`Go back to ${this.carrierName}`);
+ this.$refs.siteFooter.updateButtonText(`Go back to ${this.carrierName}`);
},
methods:
{