Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add logEvent that got lost in merge from main

+5
+5
src/screens/Login/ChooseAccountForm.tsx
··· 18 18 import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check' 19 19 import * as TextField from '#/components/forms/TextField' 20 20 import {FormContainer} from './FormContainer' 21 + import {logEvent} from '#/lib/statsig/statsig' 21 22 22 23 function Group({children}: {children: React.ReactNode}) { 23 24 const t = useTheme() ··· 125 126 Toast.show(_(msg`Already signed in as @${account.handle}`)) 126 127 } else { 127 128 await initSession(account) 129 + logEvent('account:loggedIn', { 130 + logContext: 'ChooseAccountForm', 131 + withPassword: false, 132 + }) 128 133 track('Sign In', {resumedSession: true}) 129 134 setTimeout(() => { 130 135 Toast.show(_(msg`Signed in as @${account.handle}`))