diff options
Diffstat (limited to 'src/screens')
-rw-r--r-- | src/screens/Onboarding/StepAlgoFeeds/index.tsx | 15 | ||||
-rw-r--r-- | src/screens/Onboarding/StepFinished.tsx | 5 |
2 files changed, 4 insertions, 16 deletions
diff --git a/src/screens/Onboarding/StepAlgoFeeds/index.tsx b/src/screens/Onboarding/StepAlgoFeeds/index.tsx index 4ba61696f..19bb40104 100644 --- a/src/screens/Onboarding/StepAlgoFeeds/index.tsx +++ b/src/screens/Onboarding/StepAlgoFeeds/index.tsx @@ -34,11 +34,6 @@ export const PRIMARY_FEEDS: FeedConfig[] = [ uri: 'at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.generator/whats-hot', gradient: tokens.gradients.midnight, }, - { - default: IS_PROD, // these feeds are only available in prod - uri: 'at://did:plc:wqowuobffl66jv3kpsvo7ak4/app.bsky.feed.generator/the-algorithm', - gradient: tokens.gradients.midnight, - }, ] const SECONDARY_FEEDS: FeedConfig[] = [ @@ -130,16 +125,6 @@ export function StepAlgoFeeds() { <Trans>We recommend our "Discover" feed:</Trans> </Text> <FeedCard config={PRIMARY_FEEDS[0]} /> - <Text - style={[ - a.text_md, - a.pt_4xl, - a.pb_lg, - t.atoms.text_contrast_medium, - ]}> - <Trans>We also think you'll like "For You" by Skygaze:</Trans> - </Text> - <FeedCard config={PRIMARY_FEEDS[1]} /> </Toggle.Group> <Toggle.Group diff --git a/src/screens/Onboarding/StepFinished.tsx b/src/screens/Onboarding/StepFinished.tsx index ced80f391..56635c672 100644 --- a/src/screens/Onboarding/StepFinished.tsx +++ b/src/screens/Onboarding/StepFinished.tsx @@ -4,6 +4,7 @@ import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useAnalytics} from '#/lib/analytics/analytics' +import {BSKY_APP_ACCOUNT_DID} from '#/lib/constants' import {logEvent} from '#/lib/statsig/statsig' import {logger} from '#/logger' import {useSetSaveFeedsMutation} from '#/state/queries/preferences' @@ -55,7 +56,9 @@ export function StepFinished() { try { await Promise.all([ - bulkWriteFollows(suggestedAccountsStepResults.accountDids), + bulkWriteFollows( + suggestedAccountsStepResults.accountDids.concat(BSKY_APP_ACCOUNT_DID), + ), // these must be serial (async () => { await getAgent().setInterestsPref({tags: selectedInterests}) |