Skip to content

Commit

Permalink
invert new postonboarding gate (#7695)
Browse files Browse the repository at this point in the history
  • Loading branch information
mozzius authored Feb 12, 2025
1 parent ff2a82d commit 5a865a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/statsig/gates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export type Gate =
// Keep this alphabetic please.
| 'debug_show_feedcontext'
| 'debug_subscriptions'
| 'new_postonboarding'
| 'old_postonboarding'
| 'onboarding_add_video_feed'
| 'remove_show_latest_button'
| 'test_gate_1'
Expand Down
2 changes: 1 addition & 1 deletion src/screens/Onboarding/StepFinished.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export function StepFinished() {
setActiveStarterPack(undefined)
setHasCheckedForStarterPack(true)
startProgressGuide(
gate('new_postonboarding') ? 'follow-10' : 'like-10-and-follow-7',
gate('old_postonboarding') ? 'like-10-and-follow-7' : 'follow-10',
)
dispatch({type: 'finish'})
onboardDispatch({type: 'finish'})
Expand Down

0 comments on commit 5a865a5

Please sign in to comment.