Temp to merge develop
This commit is contained in:
parent
1a1575ad43
commit
85a8efe75d
2 changed files with 9 additions and 1 deletions
|
|
@ -51,6 +51,14 @@ function setupMocks() {
|
|||
order: {
|
||||
payment: {
|
||||
isPia: false,
|
||||
insuranceCoverage: {
|
||||
isVerified: true,
|
||||
},
|
||||
},
|
||||
policy: {
|
||||
currentDeductible: 123,
|
||||
isNoComp: false,
|
||||
isItac: false,
|
||||
},
|
||||
},
|
||||
policy: {
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue