about summary refs log tree commit diff
path: root/src/lib/constants.ts
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2024-01-04 17:34:10 -0800
committerGitHub <noreply@github.com>2024-01-04 17:34:10 -0800
commit8a4a8af61c47ba315bcf39d6170825e316bfd241 (patch)
tree8ccbb4eab61bbf8d74556e7523c77837cd06813d /src/lib/constants.ts
parent34817628e12d9bce2ba4136e192e3163d7aa0eee (diff)
downloadvoidsky-8a4a8af61c47ba315bcf39d6170825e316bfd241.tar.zst
New user home feed fixes (#2421)
* Readd discover to default feeds for new users

* Fallback just to discover in home when mergefeed is disabled

* Always provide a cursor with mergefeed (no 'end of feed' condition)
Diffstat (limited to 'src/lib/constants.ts')
-rw-r--r--src/lib/constants.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/constants.ts b/src/lib/constants.ts
index e566d40d5..aec8338d0 100644
--- a/src/lib/constants.ts
+++ b/src/lib/constants.ts
@@ -117,8 +117,8 @@ export async function DEFAULT_FEEDS(
   } else {
     // production
     return {
-      pinned: [],
-      saved: [],
+      pinned: [PROD_DEFAULT_FEED('whats-hot')],
+      saved: [PROD_DEFAULT_FEED('whats-hot')],
     }
   }
 }