Temp to merge develop

This commit is contained in:
Leah Schumann 2024-07-01 06:22:34 -04:00
parent 1a1575ad43
commit 85a8efe75d
2 changed files with 9 additions and 1 deletions

View file

@ -51,6 +51,14 @@ function setupMocks() {
order: {
payment: {
isPia: false,
insuranceCoverage: {
isVerified: true,
},
},
policy: {
currentDeductible: 123,
isNoComp: false,
isItac: false,
},
},
policy: {

View file

@ -581,7 +581,7 @@ export default {
var isEnabled = false;
if (this.isInsurance) {
return piaInsurance === "true";
return piaInsurance === "true" && this.currentDeductible > 0;
} else {
return piaExperience === "PIA Optional" || piaExperience === "PIA Required";
}