Fixing coverage statement page post merge

This commit is contained in:
Michaela Brydon 2024-04-23 14:48:26 -04:00
parent 1ae3027703
commit 36a28cb496

View file

@ -27,25 +27,25 @@
class="text-center mt-4 mb-1 fw-bold text-black" class="text-center mt-4 mb-1 fw-bold text-black"
v-html="secondaryText"></div> v-html="secondaryText"></div>
<div <div
v-if="verifiedDeductible" v-if="isDeductibleVisible"
class="d-flex justify-content-center cost"> class="d-flex justify-content-center cost">
{{ deductibleForDisplay }} {{ formatAmountInDollars(deductibleValue) }}
</div> </div>
<div <div
v-if="isQuoteDisplayed" v-if="isQuoteDisplayed"
class="d-flex justify-content-center cost mb-0"> class="d-flex justify-content-center cost mb-0">
{{ servicePriceForDisplay }} {{ formatAmountInDollars(totalServicePrice) }}
</div> </div>
<div <div
v-if="verifiedITAC" v-if="isITACQuoteVisible"
class="d-flex justify-content-center mb-4 deductible-text"> class="d-flex justify-content-center mb-4 deductible-text">
{{ deductibleText }}&nbsp; {{ deductibleText }}&nbsp;
<span class="text-success fw-bold">{{ <span class="text-success fw-bold">{{
deductibleForDisplay formatAmountInDollars(deductibleValue)
}}</span> }}</span>
</div> </div>
<alert <alert
v-if="verifiedITAC" v-if="isITACQuoteVisible"
ref="verifiedITACAlert" ref="verifiedITACAlert"
class="mb-5" class="mb-5"
cmsWidgetName="VerifiedITACAlert" cmsWidgetName="VerifiedITACAlert"