From 2bc20b1752d455bc1ca48e5f8eb4bd670d22ec34 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 8 Apr 2024 14:32:00 -0500 Subject: Onboarding tweaks (#3447) * Remove feed * Follow bsky.app --- src/screens/Onboarding/StepFinished.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/screens/Onboarding/StepFinished.tsx') 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}) -- cgit 1.4.1