prevent null deductible from displaying

This commit is contained in:
Katie Kroell 2023-11-16 16:56:53 -05:00
parent e1a99064c3
commit bd9022177c

View file

@ -279,7 +279,7 @@ export default {
},
verifiedDeductible() {
return useMainStore().isClaimRegistrationRequired
? this.registerClaimSuccessful && this.coveredAndServicePriceAboveOrEqualDeductible
? this.registerClaimSuccessful && this.coveredAndServicePriceAboveOrEqualDeductible && this.vehicleDeductible !== null
: this.policyLookupSuccessful && this.coveredAndServicePriceAboveOrEqualDeductible;
},
unverified() {