diff options
author | hailey <me@haileyok.com> | 2025-05-30 12:13:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-30 12:13:44 -0700 |
commit | 2a453cd9cac811da0eb7c802489c6e4bcfe4bd78 (patch) | |
tree | d99037b247dca600dfe7f3d39146d1b046d88742 /src/screens/Profile/Header/Shell.tsx | |
parent | 4890648116e255ed28c5ae0522a53278a6c35a39 (diff) | |
download | voidsky-2a453cd9cac811da0eb7c802489c6e4bcfe4bd78.tar.zst |
invert flag for sending to statsig (#8431)
Diffstat (limited to 'src/screens/Profile/Header/Shell.tsx')
-rw-r--r-- | src/screens/Profile/Header/Shell.tsx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/screens/Profile/Header/Shell.tsx b/src/screens/Profile/Header/Shell.tsx index 9e868c474..9777c8cc7 100644 --- a/src/screens/Profile/Header/Shell.tsx +++ b/src/screens/Profile/Header/Shell.tsx @@ -101,14 +101,22 @@ let ProfileHeaderShell = ({ useEffect(() => { if (live.isActive) { - logger.metric('live:view:profile', {subject: profile.did}) + logger.metric( + 'live:view:profile', + {subject: profile.did}, + {statsig: true}, + ) } }, [live.isActive, profile.did]) const onPressAvi = React.useCallback(() => { if (live.isActive) { playHaptic('Light') - logger.metric('live:card:open', {subject: profile.did, from: 'profile'}) + logger.metric( + 'live:card:open', + {subject: profile.did, from: 'profile'}, + {statsig: true}, + ) liveStatusControl.open() } else { const modui = moderation.ui('avatar') |