From dad6cdf0f86fd13df604cf25ec8d536c934f9caf Mon Sep 17 00:00:00 2001 From: Bryan Mauger Date: Tue, 18 Jul 2023 15:16:25 -0400 Subject: [PATCH] CSR-1553 changed insurance threshold value from 500 to 300. --- src/layouts/quote/quote.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/quote/quote.vue b/src/layouts/quote/quote.vue index 1e78647dc..99d824af5 100644 --- a/src/layouts/quote/quote.vue +++ b/src/layouts/quote/quote.vue @@ -166,7 +166,7 @@ export default { return availableLineItems ? baseMixin.methods.getTierOnePackagePrice( baseMixin.methods.filterOutFees(availableLineItems) - ) > 500 + ) > 300 : null; } },