this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

tweak downsample rate to 1% (#5836)

Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com>

authored by

Hailey
surfdude29
and committed by
GitHub
72270fd5 fd2e94f3

+2 -2
+2 -2
src/lib/statsig/statsig.tsx
··· 4 4 import {sha256} from 'js-sha256' 5 5 import {Statsig, StatsigProvider} from 'statsig-react-native-expo' 6 6 7 + import {BUNDLE_DATE, BUNDLE_IDENTIFIER, IS_TESTFLIGHT} from '#/lib/app-info' 7 8 import {logger} from '#/logger' 8 9 import {isWeb} from '#/platform/detection' 9 10 import * as persisted from '#/state/persisted' 10 - import {BUNDLE_DATE, BUNDLE_IDENTIFIER, IS_TESTFLIGHT} from 'lib/app-info' 11 11 import {useSession} from '../../state/session' 12 12 import {timeout} from '../async/timeout' 13 13 import {useNonReactiveCallback} from '../hooks/useNonReactiveCallback' ··· 89 89 } 90 90 } 91 91 92 - const DOWNSAMPLE_RATE = 0.95 // 95% likely 92 + const DOWNSAMPLE_RATE = 0.99 // 99% likely 93 93 const DOWNSAMPLED_EVENTS: Set<keyof LogEvents> = new Set([ 94 94 'router:navigate:notifications:sampled', 95 95 'state:background:sampled',