Merge pull request #2882 from Safelite/feature/CASH-1072_partialRevert
Feature/CASH-1072_partialRevert
This commit is contained in:
commit
4170e3e9c7
1 changed files with 1 additions and 4 deletions
|
|
@ -807,10 +807,7 @@ export default {
|
|||
const piaInsurance = this.getSettingValue(experimentSettings.PIA_INSURANCE);
|
||||
|
||||
if (this.isInsurance) {
|
||||
return (
|
||||
piaInsurance === "true" &&
|
||||
(this.currentDeductible > 0 || +this.totalAmountDue > 0)
|
||||
);
|
||||
return piaInsurance === "true" && this.currentDeductible > 0;
|
||||
} else {
|
||||
return piaExperience === "PIA Optional" || piaExperience === "PIA Required";
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue