From bcec905bea3ed0a7490ad34a124d377ebefb862e Mon Sep 17 00:00:00 2001 From: Dustin Do Date: Thu, 12 Sep 2024 14:09:37 +0700 Subject: [PATCH] fix(mobile): fix sign in posthog event (#319) --- 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], )