[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:
parent
516eb69637
commit
4fa92d7a49
8 changed files with 29 additions and 14 deletions
|
|
@ -24,7 +24,7 @@ import {Portal} from '#/components/Portal'
|
|||
export function Onboarding() {
|
||||
const {_} = useLingui()
|
||||
const gate = useGate()
|
||||
const isReducedOnboardingEnabled = gate('reduced_onboarding_and_home_algo')
|
||||
const isReducedOnboardingEnabled = gate('reduced_onboarding_and_home_algo_v2')
|
||||
const [state, dispatch] = React.useReducer(
|
||||
isReducedOnboardingEnabled ? reducerReduced : reducer,
|
||||
isReducedOnboardingEnabled ? {...initialStateReduced} : {...initialState},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue