Merge pull request #1248 from Safelite/CSR-1553-change-insurance-threshold

CSR-1553 changed insurance threshold value from 500 to 300.
This commit is contained in:
bmauger 2023-07-18 15:29:56 -04:00 committed by GitHub
commit 68c3a2b8f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -166,7 +166,7 @@ export default {
return availableLineItems
? baseMixin.methods.getTierOnePackagePrice(
baseMixin.methods.filterOutFees(availableLineItems)
) > 500
) > 300
: null;
}
},