Merge pull request #1210 from Safelite/feature/kroell/INSR-9538

INSR-9538: add Massachusetts steering language to coverage-statement
This commit is contained in:
katiekroell 2026-05-05 10:56:23 -04:00 committed by GitHub
commit 3fff8eea75
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -60,6 +60,10 @@
<div <div
class="body-text" class="body-text"
v-html="nextStepsBody"></div> v-html="nextStepsBody"></div>
<textBlock
v-if="MAPolicy"
cmsWidgetName="MASteeringText">
</textBlock>
<div <div
v-if="isNoCompQuoteVisible" v-if="isNoCompQuoteVisible"
class="no-comp-price-text"> class="no-comp-price-text">
@ -357,6 +361,9 @@ export default {
return this.isITACQuoteVisible return this.isITACQuoteVisible
|| this.isNoCompQuoteVisible || this.isNoCompQuoteVisible
|| (this.showDeductibleOnly && this.deductibleValue > 0); || (this.showDeductibleOnly && this.deductibleValue > 0);
},
MAPolicy() {
return useMainStore().customerData.addressQuestions.state === "MA";
} }
}, },
watch: { watch: {