From 6839602ec032d7acd8f9fc44d17b6e4bdfaaced3 Mon Sep 17 00:00:00 2001 From: Adam Caouette Date: Mon, 29 Jan 2024 22:03:41 -0500 Subject: [PATCH] CSR-1285: replace hard-coded account no. with State one --- src/store/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/index.js b/src/store/index.js index 4d627e7e9..bb4444062 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1343,7 +1343,7 @@ export const actions = { getMobileFeePart(context, { pageNameToLog }) { const damageType = context.getters.damage.isRepair ? "Repair" : "Replace"; const parentAccountNumber = context.getters.payment.parentAccountNumber; - const billToAccountNumber = 87291; // TODO: MAKE THIS REAL + const billToAccountNumber = context.getters.payment.billToAccountNumber; return globalMethods.callHttpClient({ method: endpoints.GetMobileFeePart.method,