diff --git a/src/store/index.js b/src/store/index.js index 4688ec74..805a974b 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1617,8 +1617,10 @@ export const useMainStore = defineStore({ } }); }, - async loadSession(duplicate) { - const { applicationUser, order } = this; + async loadSession(duplicate) { + const { applicationUser, order } = this; + // NOTE: We are re-using the current user's saved session id (this is required on the load-session call). + // This should be ok, but should probably validate. const response = await globalMethods.callHttpClient({ method: endpoints.LoadSession.method, endpoint: endpoints.LoadSession.url,