Bluesky app fork with some witchin' additions 💫

Remove feed:seen from statsig (#9261)

authored by samuel.fm and committed by

GitHub 78c8a603 28e132ae

+8 -4
+8 -4
src/state/feed-feedback.tsx
··· 341 341 } 342 342 343 343 if (stats.seenCount > 0) { 344 - logger.metric('feed:seen', { 345 - count: stats.seenCount, 346 - feed: feedDescriptor, 347 - }) 344 + logger.metric( 345 + 'feed:seen', 346 + { 347 + count: stats.seenCount, 348 + feed: feedDescriptor, 349 + }, 350 + {statsig: false}, 351 + ) 348 352 stats.seenCount = 0 349 353 } 350 354 }