From ce5c9a94866355d48d2f56cb429824605e378117 Mon Sep 17 00:00:00 2001 From: Dustin Do Date: Thu, 12 Sep 2024 14:06:13 +0700 Subject: [PATCH] fix(mobile): fix sign in posthog event --- apps/mobile/app/(auth)/login.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/mobile/app/(auth)/login.tsx b/apps/mobile/app/(auth)/login.tsx index d4693c69..fcdfb1cb 100644 --- a/apps/mobile/app/(auth)/login.tsx +++ b/apps/mobile/app/(auth)/login.tsx @@ -47,7 +47,7 @@ export default function LoginScreen() { }, ) => { posthog.identify(userData.id) - posthog.capture('user_signed_up', { strategy }) + posthog.capture('user_signed_in', { strategy }) }, [posthog], )