diff --git a/src/store/index.js b/src/store/index.js index 55d0b1d7..221888a2 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1554,15 +1554,14 @@ export const useMainStore = defineStore({ }); }, async loadSession(duplicate) { - const { order, issConfig } = this; + const { order } = this; const response = await globalMethods.callHttpClient({ method: endpoints.LoadSession.method, endpoint: endpoints.LoadSession.url, payload: { referralNumber: duplicate.referralNumber, referralDate: duplicate.responseDate, - // TODO confirm this is right to use here - parentAccountNumber: issConfig.parentAccountNumber, + parentAccountNumber: order.parentAccountNumber, referralCorrelationId: duplicate.correlationId } });