invert flag for sending to statsig (#8431)

This commit is contained in:
hailey
2025-05-30 12:13:44 -07:00
committed by GitHub
parent 4890648116
commit 2a453cd9ca
23 changed files with 154 additions and 69 deletions
+1 -1
View File
@@ -959,7 +959,7 @@ export function Explore({
}
if (!alreadyReportedRef.current.has(module)) {
alreadyReportedRef.current.set(module, module)
logger.metric('explore:module:seen', {module})
logger.metric('explore:module:seen', {module}, {statsig: false})
}
}, [])
@@ -44,7 +44,11 @@ function Inner() {
trend={trend}
rank={index + 1}
onPress={() => {
logger.metric('trendingTopic:click', {context: 'explore'})
logger.metric(
'trendingTopic:click',
{context: 'explore'},
{statsig: true},
)
}}
/>
))}