An ATproto social media client -- with an independent Appview.
6
fork

Configure Feed

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

Update team handles and fetch more data in discovery

+9 -9
+7 -9
src/lib/constants.ts
··· 6 6 7 7 export const PROD_TEAM_HANDLES = [ 8 8 'jay.bsky.social', 9 - 'paul.bsky.social', 10 - 'dan.bsky.social', 11 - 'divy.bsky.social', 12 - 'why.bsky.social', 9 + 'pfrazee.com', 10 + 'divy.zone', 11 + 'dholms.xyz', 12 + 'why.bsky.world', 13 13 'iamrosewang.bsky.social', 14 14 ] 15 15 export const STAGING_TEAM_HANDLES = [ ··· 141 141 'pwang', 142 142 'martin', 143 143 'jack', 144 - 'dan', 145 - 'why', 146 - 'divy', 147 144 'jay', 148 - 'paul', 149 - ].map(handle => `${handle}.bsky.social`) 145 + ] 146 + .map(handle => `${handle}.bsky.social`) 147 + .concat(['pfrazee.com', 'divy.zone', 'dholms.xyz', 'why.bsky.world']) 150 148 export const STAGING_SUGGESTED_FOLLOWS = ['arcalinea', 'paul', 'paul2'].map( 151 149 handle => `${handle}.staging.bsky.dev`, 152 150 )
+2
src/state/models/suggested-posts-view.ts
··· 48 48 const responses = await getMultipleAuthorsPosts( 49 49 this.rootStore, 50 50 TEAM_HANDLES(String(this.rootStore.agent.service)), 51 + undefined, 52 + 30, 51 53 ) 52 54 runInAction(() => { 53 55 const finalPosts = mergePosts(responses, {repostsOnly: true})