Skip to content

Commit e36ee43

Browse files
committed
Update follow during onboarding
1 parent 40ef82c commit e36ee43

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

src/lib/constants.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,10 @@ export const LANG_DROPDOWN_HITSLOP = {top: 10, bottom: 10, left: 4, right: 4}
117117
export const BACK_HITSLOP = HITSLOP_30
118118
export const MAX_POST_LINES = 25
119119

120-
export const BSKY_APP_ACCOUNT_DID = 'did:plc:z72i7hdynmk6r22z27h6tvur'
120+
export const BSKY_APP_ACCOUNT_DID = 'did:plc:d2mkddsbmnrgr3domzg5qexf'
121+
export const FOUNDER_DID = 'did:plc:w4xbfzo7kqfes5zb7r6qv3rw'
121122

122-
export const BSKY_FEED_OWNER_DIDS = [
123-
BSKY_APP_ACCOUNT_DID,
124-
'did:plc:vpkhqolt662uhesyj6nxm7ys',
125-
'did:plc:q6gjnaw2blty4crticxkmujt',
126-
]
123+
export const BSKY_FEED_OWNER_DIDS = [BSKY_APP_ACCOUNT_DID, FOUNDER_DID]
127124

128125
export const DISCOVER_FEED_URI =
129126
'at://did:plc:w4xbfzo7kqfes5zb7r6qv3rw/app.bsky.feed.generator/blacksky-trend'

src/screens/Onboarding/StepFinished.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import {uploadBlob} from '#/lib/api'
2323
import {
2424
BSKY_APP_ACCOUNT_DID,
2525
DISCOVER_SAVED_FEED,
26+
FOUNDER_DID,
2627
TIMELINE_SAVED_FEED,
2728
VIDEO_SAVED_FEED,
2829
} from '#/lib/constants'
@@ -117,6 +118,7 @@ export function StepFinished() {
117118
await Promise.all([
118119
bulkWriteFollows(agent, [
119120
BSKY_APP_ACCOUNT_DID,
121+
FOUNDER_DID,
120122
...(listItems?.map(i => i.subject.did) ?? []),
121123
]),
122124
(async () => {

0 commit comments

Comments
 (0)