[Statsig] Fix exposure logging for reduced onboarding (#4131)

* Add dangerouslyDisableExposureLogging option

* Rename onboarding gate to v2

* Disable exposure logging for onboarding in PostFeed query
This commit is contained in:
dan 2024-05-21 00:17:57 +01:00 committed by GitHub
parent 516eb69637
commit 4fa92d7a49
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 29 additions and 14 deletions

View file

@ -112,7 +112,7 @@ export function TestCtrls() {
testID="e2eStartOnboarding"
onPress={() => {
// TODO remove when experiment is over
setGate('reduced_onboarding_and_home_algo', true)
setGate('reduced_onboarding_and_home_algo_v2', true)
onboardingDispatch({type: 'start'})
}}
accessibilityRole="button"
@ -123,7 +123,7 @@ export function TestCtrls() {
testID="e2eStartLongboarding"
onPress={() => {
// TODO remove when experiment is over
setGate('reduced_onboarding_and_home_algo', false)
setGate('reduced_onboarding_and_home_algo_v2', false)
onboardingDispatch({type: 'start'})
}}
accessibilityRole="button"