invert new postonboarding gate (#7695)

This commit is contained in:
Samuel Newman
2025-02-12 21:33:24 +00:00
committed by GitHub
parent ff2a82d358
commit 5a865a504c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ export type Gate =
// Keep this alphabetic please. // Keep this alphabetic please.
| 'debug_show_feedcontext' | 'debug_show_feedcontext'
| 'debug_subscriptions' | 'debug_subscriptions'
| 'new_postonboarding' | 'old_postonboarding'
| 'onboarding_add_video_feed' | 'onboarding_add_video_feed'
| 'remove_show_latest_button' | 'remove_show_latest_button'
| 'test_gate_1' | 'test_gate_1'
+1 -1
View File
@@ -199,7 +199,7 @@ export function StepFinished() {
setActiveStarterPack(undefined) setActiveStarterPack(undefined)
setHasCheckedForStarterPack(true) setHasCheckedForStarterPack(true)
startProgressGuide( startProgressGuide(
gate('new_postonboarding') ? 'follow-10' : 'like-10-and-follow-7', gate('old_postonboarding') ? 'like-10-and-follow-7' : 'follow-10',
) )
dispatch({type: 'finish'}) dispatch({type: 'finish'})
onboardDispatch({type: 'finish'}) onboardDispatch({type: 'finish'})