From 8d9bf01a1aacbb2e9529566218ae51a13a82d383 Mon Sep 17 00:00:00 2001 From: CarlNation Date: Tue, 24 Sep 2024 05:47:22 -0400 Subject: [PATCH] CSR-1600 CSR-1600 backout unintentional commit for mobile fee endpoint --- src/store/index.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/store/index.js b/src/store/index.js index c0cb2e0e7..89d0db2a3 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1537,12 +1537,9 @@ export const actions = { ? context.getters.payment.billToAccountNumber : applicationConfig.CASH_DEFAULT_BILL_TO_ACCOUNT_NUMBER; - const covStatus = context.getters.payment?.insuranceCoverage?.coverageStatus; - const covSubStatus = context.getters.payment?.insuranceCoverage?.coverageSubStatus; - return globalMethods.callHttpClient({ method: endpoints.GetMobileFeePart.method, - endpoint: `${endpoints.GetMobileFeePart.url}/${damageType}/${parentAccountNumber}/${billToAccountNumber}/${covStatus}/${covSubStatus}`, + endpoint: `${endpoints.GetMobileFeePart.url}/${damageType}/${parentAccountNumber}/${billToAccountNumber}`, logApiCall: true, pageNameToLog: pageNameToLog, });