From 1dc34f9cb7ac91372e8530fe0e45f59a894da84a Mon Sep 17 00:00:00 2001 From: Germain Tchuinkam Date: Wed, 17 Jan 2024 11:56:30 -0500 Subject: [PATCH] analytic fix --- ui/src/components/AuthPage/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/AuthPage/index.tsx b/ui/src/components/AuthPage/index.tsx index 3827120..db9fe0c 100644 --- a/ui/src/components/AuthPage/index.tsx +++ b/ui/src/components/AuthPage/index.tsx @@ -108,7 +108,7 @@ export const AuthPage = () => { const actionSubject = 'compassApp'; await getCallBridge()('fireForgeAnalytic', { forgeAppId: appId, - analyticEvent: `${action} ${actionSubject}`, + analyticEvent: `${actionSubject} ${action}`, }); };