From 634713ab982cf1c3978f4b5aab826b43b5306e2e Mon Sep 17 00:00:00 2001 From: Johnny shultz Date: Wed, 28 May 2025 11:43:24 -0400 Subject: [PATCH] CASH-494 CASH-494 changed TRUE and FALSE to lowercase --- src/store/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store/index.js b/src/store/index.js index ddb2aab19..7499a4af9 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -963,8 +963,8 @@ export const getters = { funnelServiceState: state.order.serviceLocation.state, funnelServiceZipCode: state.order.serviceLocation.zipCode, funnelServiceZipCodeCtu: state.order.serviceLocation.zipCodeCtu, - funnelPolicyIsItac: state.order.policy.isItac ? "TRUE" : "FALSE", - funnelPolicyIsNoComp: state.order.policy.isNoComp ? "TRUE" : "FALSE", + funnelPolicyIsItac: state.order.policy.isItac ? "true" : "false", + funnelPolicyIsNoComp: state.order.policy.isNoComp ? "true" : "false", funnelProviderNumber: state.order.serviceLocation.provider.providerNumber, funnelParentAccountNumber: state.order.payment.parentAccountNumber, funnelReferralType: state.order.payment.isInsurance ? "INSURANCE" : "CASH QUOTE",