diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-15 17:29:38 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-03-15 17:29:38 -0500 |
commit | 64c8689a290927e9d1028366c5d6ac03a3b4197a (patch) | |
tree | eb05de3d28f62e3bd4767b0474554e3b896b3154 /src/lib/constants.ts | |
parent | 53fc5bf3369e404d39f5dde06f616ea07beab255 (diff) | |
download | voidsky-64c8689a290927e9d1028366c5d6ac03a3b4197a.tar.zst |
Update team handles and fetch more data in discovery
Diffstat (limited to 'src/lib/constants.ts')
-rw-r--r-- | src/lib/constants.ts | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/src/lib/constants.ts b/src/lib/constants.ts index ef4bb0f08..0cde9b014 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -6,10 +6,10 @@ export const MAX_DESCRIPTION = 256 export const PROD_TEAM_HANDLES = [ 'jay.bsky.social', - 'paul.bsky.social', - 'dan.bsky.social', - 'divy.bsky.social', - 'why.bsky.social', + 'pfrazee.com', + 'divy.zone', + 'dholms.xyz', + 'why.bsky.world', 'iamrosewang.bsky.social', ] export const STAGING_TEAM_HANDLES = [ @@ -141,12 +141,10 @@ export const PROD_SUGGESTED_FOLLOWS = [ 'pwang', 'martin', 'jack', - 'dan', - 'why', - 'divy', 'jay', - 'paul', -].map(handle => `${handle}.bsky.social`) +] + .map(handle => `${handle}.bsky.social`) + .concat(['pfrazee.com', 'divy.zone', 'dholms.xyz', 'why.bsky.world']) export const STAGING_SUGGESTED_FOLLOWS = ['arcalinea', 'paul', 'paul2'].map( handle => `${handle}.staging.bsky.dev`, ) |