Removing section

This commit is contained in:
Michaela Brydon 2024-07-17 13:11:29 -04:00
parent 626fffb2af
commit d1fc9faff3

View file

@ -35,13 +35,7 @@
<textBlock <textBlock
ref="tpaConfirmationBodyTwo" ref="tpaConfirmationBodyTwo"
:customText="tpaConfirmationBodyTwo" :customText="tpaConfirmationBodyTwo"
class="small mt-0 mb-4" /> class="small mt-0" />
<textBlock
id="contactCarrierText"
ref="contactCarrierText"
:customText="contactCarrierText"
class="contact-carrier-text small"
@click="setBailoutInfo()" />
<div ref="confirmationOrderDetailsSection"> <div ref="confirmationOrderDetailsSection">
<textBlock <textBlock
ref="tpaConfirmationOrderDetailsTitle" ref="tpaConfirmationOrderDetailsTitle"
@ -160,20 +154,6 @@ export default {
tpaConfirmationBodyTwo() { tpaConfirmationBodyTwo() {
return this.getCmsContent('TPAConfirmationContent', 'BodyText2'); return this.getCmsContent('TPAConfirmationContent', 'BodyText2');
}, },
contactCarrierText() {
const contactCarrierText = this.getCmsContent(
'ContactCarrierContent',
'Text'
)?.replaceAll(
'{custom:carrierPhoneNumber}',
this.carrierPhoneNumber
);
return this.processIfStatements(
contactCarrierText,
'custom',
this.getCustomValueFromString
);
},
orderDetailsTitle() { orderDetailsTitle() {
return this.getCmsContent('OrderDetailsContent', 'HeaderText'); return this.getCmsContent('OrderDetailsContent', 'HeaderText');
}, },