From 2a453cd9cac811da0eb7c802489c6e4bcfe4bd78 Mon Sep 17 00:00:00 2001 From: hailey Date: Fri, 30 May 2025 12:13:44 -0700 Subject: invert flag for sending to statsig (#8431) --- src/components/live/LiveStatusDialog.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'src/components/live/LiveStatusDialog.tsx') diff --git a/src/components/live/LiveStatusDialog.tsx b/src/components/live/LiveStatusDialog.tsx index a79265ad6..8da15bc93 100644 --- a/src/components/live/LiveStatusDialog.tsx +++ b/src/components/live/LiveStatusDialog.tsx @@ -158,7 +158,11 @@ export function LiveStatus({ color="primary" variant="solid" onPress={() => { - logger.metric('live:card:watch', {subject: profile.did}) + logger.metric( + 'live:card:watch', + {subject: profile.did}, + {statsig: true}, + ) openLink(embed.external.uri, false) }}> @@ -187,7 +191,11 @@ export function LiveStatus({ color="secondary" variant="solid" onPress={() => { - logger.metric('live:card:openProfile', {subject: profile.did}) + logger.metric( + 'live:card:openProfile', + {subject: profile.did}, + {statsig: true}, + ) unstableCacheProfileView(queryClient, profile) onPressOpenProfile() }}> -- cgit 1.4.1