about summary refs log tree commit diff
path: root/src/screens/Onboarding/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/screens/Onboarding/index.tsx')
-rw-r--r--src/screens/Onboarding/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/Onboarding/index.tsx b/src/screens/Onboarding/index.tsx
index 5af7a12dc..20271a465 100644
--- a/src/screens/Onboarding/index.tsx
+++ b/src/screens/Onboarding/index.tsx
@@ -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},