diff options
author | Hailey <me@haileyok.com> | 2024-11-15 11:40:43 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-15 11:40:43 -0800 |
commit | 3bd14371330abf902690dff9b3f0f2036ef472e5 (patch) | |
tree | 641df6c63773a7784d435add9f7ee80fd9bc97c9 /src/state/feed-feedback.tsx | |
parent | 400c4322833d9cd4a6fb1e322c9ba844d85eff10 (diff) | |
download | voidsky-3bd14371330abf902690dff9b3f0f2036ef472e5.tar.zst |
[Statsig] Remove client downsampling (#6153)
Diffstat (limited to 'src/state/feed-feedback.tsx')
-rw-r--r-- | src/state/feed-feedback.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/state/feed-feedback.tsx b/src/state/feed-feedback.tsx index 41579edc1..eaf6529f3 100644 --- a/src/state/feed-feedback.tsx +++ b/src/state/feed-feedback.tsx @@ -234,21 +234,21 @@ function flushToStatsig(stats: AggregatedStats | null) { } if (stats.clickthroughCount > 0) { - logEvent('discover:clickthrough:sampled', { + logEvent('discover:clickthrough', { count: stats.clickthroughCount, }) stats.clickthroughCount = 0 } if (stats.engagedCount > 0) { - logEvent('discover:engaged:sampled', { + logEvent('discover:engaged', { count: stats.engagedCount, }) stats.engagedCount = 0 } if (stats.seenCount > 0) { - logEvent('discover:seen:sampled', { + logEvent('discover:seen', { count: stats.seenCount, }) stats.seenCount = 0 |