diff options
Diffstat (limited to 'src/screens/Onboarding/StepFinished.tsx')
-rw-r--r-- | src/screens/Onboarding/StepFinished.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/Onboarding/StepFinished.tsx b/src/screens/Onboarding/StepFinished.tsx index 3db0cbd2c..855e12ed0 100644 --- a/src/screens/Onboarding/StepFinished.tsx +++ b/src/screens/Onboarding/StepFinished.tsx @@ -83,7 +83,7 @@ export function StepFinished() { * selected in onboarding and therefore we don't need to run this * code (which would overwrite the other feeds already set). */ - if (!gate('reduced_onboarding_and_home_algo')) { + if (!gate('reduced_onboarding_and_home_algo_v2')) { const otherFeeds = selectedFeeds.length ? selectedFeeds.map(f => ({ type: 'feed', @@ -120,7 +120,7 @@ export function StepFinished() { })(), (async () => { - if (!gate('reduced_onboarding_and_home_algo')) return + if (!gate('reduced_onboarding_and_home_algo_v2')) return const {imageUri, imageMime} = profileStepResults if (imageUri && imageMime) { |