Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Onboarding tweaks (#3447)

* Remove feed

* Follow bsky.app

authored by

Eric Bailey and committed by
GitHub
2bc20b17 6d3f9397

+7 -17
+3 -1
src/lib/constants.ts
··· 80 80 export const BACK_HITSLOP = HITSLOP_30 81 81 export const MAX_POST_LINES = 25 82 82 83 + export const BSKY_APP_ACCOUNT_DID = 'did:plc:z72i7hdynmk6r22z27h6tvur' 84 + 83 85 export const BSKY_FEED_OWNER_DIDS = [ 84 - 'did:plc:z72i7hdynmk6r22z27h6tvur', 86 + BSKY_APP_ACCOUNT_DID, 85 87 'did:plc:vpkhqolt662uhesyj6nxm7ys', 86 88 'did:plc:q6gjnaw2blty4crticxkmujt', 87 89 ]
-15
src/screens/Onboarding/StepAlgoFeeds/index.tsx
··· 34 34 uri: 'at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.generator/whats-hot', 35 35 gradient: tokens.gradients.midnight, 36 36 }, 37 - { 38 - default: IS_PROD, // these feeds are only available in prod 39 - uri: 'at://did:plc:wqowuobffl66jv3kpsvo7ak4/app.bsky.feed.generator/the-algorithm', 40 - gradient: tokens.gradients.midnight, 41 - }, 42 37 ] 43 38 44 39 const SECONDARY_FEEDS: FeedConfig[] = [ ··· 130 125 <Trans>We recommend our "Discover" feed:</Trans> 131 126 </Text> 132 127 <FeedCard config={PRIMARY_FEEDS[0]} /> 133 - <Text 134 - style={[ 135 - a.text_md, 136 - a.pt_4xl, 137 - a.pb_lg, 138 - t.atoms.text_contrast_medium, 139 - ]}> 140 - <Trans>We also think you'll like "For You" by Skygaze:</Trans> 141 - </Text> 142 - <FeedCard config={PRIMARY_FEEDS[1]} /> 143 128 </Toggle.Group> 144 129 145 130 <Toggle.Group
+4 -1
src/screens/Onboarding/StepFinished.tsx
··· 4 4 import {useLingui} from '@lingui/react' 5 5 6 6 import {useAnalytics} from '#/lib/analytics/analytics' 7 + import {BSKY_APP_ACCOUNT_DID} from '#/lib/constants' 7 8 import {logEvent} from '#/lib/statsig/statsig' 8 9 import {logger} from '#/logger' 9 10 import {useSetSaveFeedsMutation} from '#/state/queries/preferences' ··· 55 56 56 57 try { 57 58 await Promise.all([ 58 - bulkWriteFollows(suggestedAccountsStepResults.accountDids), 59 + bulkWriteFollows( 60 + suggestedAccountsStepResults.accountDids.concat(BSKY_APP_ACCOUNT_DID), 61 + ), 59 62 // these must be serial 60 63 (async () => { 61 64 await getAgent().setInterestsPref({tags: selectedInterests})