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/view/com/posts/PostFeed.tsx | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'src/view/com/posts/PostFeed.tsx') diff --git a/src/view/com/posts/PostFeed.tsx b/src/view/com/posts/PostFeed.tsx index 90ad2a522..cbbe4a00f 100644 --- a/src/view/com/posts/PostFeed.tsx +++ b/src/view/com/posts/PostFeed.tsx @@ -796,10 +796,14 @@ let PostFeed = ({ ) { if (!seenActorWithStatusRef.current.has(actor.did)) { seenActorWithStatusRef.current.add(actor.did) - logger.metric('live:view:post', { - subject: actor.did, - feed, - }) + logger.metric( + 'live:view:post', + { + subject: actor.did, + feed, + }, + {statsig: false}, + ) } } } -- cgit 1.4.1