diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-05-25 17:10:00 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-05-25 17:10:00 -0500 |
commit | 7916c2e02ec66e32de258d2e5a605c1ee1faeac9 (patch) | |
tree | 426aa3f54b1f47767e9a48288728ce4f3e6b47a9 /src | |
parent | bf056cf6228155abac25e91b88a8bed43bae2b70 (diff) | |
download | voidsky-7916c2e02ec66e32de258d2e5a605c1ee1faeac9.tar.zst |
Add 'popular with friends' to default feeds
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/constants.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/constants.ts b/src/lib/constants.ts index c42e6f3a9..41aab1431 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -123,7 +123,10 @@ export async function DEFAULT_FEEDS( } else { // production return { - pinned: [PROD_DEFAULT_FEED('whats-hot')], + pinned: [ + PROD_DEFAULT_FEED('whats-hot'), + PROD_DEFAULT_FEED('with-friends'), + ], saved: [ PROD_DEFAULT_FEED('bsky-team'), PROD_DEFAULT_FEED('with-friends'), |