diff options
Diffstat (limited to 'src/screens/Onboarding/StepFinished.tsx')
-rw-r--r-- | src/screens/Onboarding/StepFinished.tsx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/screens/Onboarding/StepFinished.tsx b/src/screens/Onboarding/StepFinished.tsx index fc0ea6a24..587ffa4f7 100644 --- a/src/screens/Onboarding/StepFinished.tsx +++ b/src/screens/Onboarding/StepFinished.tsx @@ -12,6 +12,7 @@ import { BSKY_APP_ACCOUNT_DID, DISCOVER_SAVED_FEED, TIMELINE_SAVED_FEED, + VIDEO_SAVED_FEED, } from '#/lib/constants' import {useRequestNotificationsPermission} from '#/lib/notifications/notifications' import {logEvent, useGate} from '#/lib/statsig/statsig' @@ -111,6 +112,12 @@ export function StepFinished() { id: TID.nextStr(), }, ] + if (gate('onboarding_add_video_feed')) { + feedsToSave.push({ + ...VIDEO_SAVED_FEED, + id: TID.nextStr(), + }) + } // Any starter pack feeds will be pinned _after_ the defaults if (starterPack && starterPack.feeds?.length) { |