From 411976efe59d8dfdaf64b1674ade2657dff3003c Mon Sep 17 00:00:00 2001 From: Chloe Herd Date: Fri, 1 Dec 2023 09:38:40 -0500 Subject: [PATCH] Use correct deviceId in initialize --- 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 684ca83e1..55a2ba120 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1151,11 +1151,11 @@ export const actions = { } ); }, - initializeSession(context, { userId, sessionId, userAgent, referrer }) { + initializeSession(context, { userId, deviceId, sessionId, userAgent, referrer }) { var payload = { applicationName: applicationConfig.ANALYTICS_APPLICATION_NAME, userId: userId, - deviceId: userId, + deviceId: deviceId, sessionId: sessionId, userAgent: userAgent, operatorId: "WEB",