about summary refs log tree commit diff
path: root/src/state/queries/post-feed.ts
diff options
context:
space:
mode:
authordan <dan.abramov@gmail.com>2024-09-13 22:30:09 +0100
committerGitHub <noreply@github.com>2024-09-13 22:30:09 +0100
commitce3893d8169cb63e982b57d18817c9155c2e874c (patch)
treee3bd8ed4ad85656168f404bd69f24ea398bfc9a6 /src/state/queries/post-feed.ts
parent88813f57c98041507eec708294272387cdc4a0f2 (diff)
downloadvoidsky-ce3893d8169cb63e982b57d18817c9155c2e874c.tar.zst
Apply Following settings to Lists (#5313)
* Apply Following settings to Lists

* Remove dead code
Diffstat (limited to 'src/state/queries/post-feed.ts')
-rw-r--r--src/state/queries/post-feed.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/state/queries/post-feed.ts b/src/state/queries/post-feed.ts
index ee3e2c14d..7daf441ad 100644
--- a/src/state/queries/post-feed.ts
+++ b/src/state/queries/post-feed.ts
@@ -51,7 +51,6 @@ type AuthorFilter =
   | 'posts_with_media'
 type FeedUri = string
 type ListUri = string
-type ListFilter = 'as_following' // Applies current Following settings. Currently client-side.
 
 export type FeedDescriptor =
   | 'following'
@@ -59,7 +58,6 @@ export type FeedDescriptor =
   | `feedgen|${FeedUri}`
   | `likes|${ActorDid}`
   | `list|${ListUri}`
-  | `list|${ListUri}|${ListFilter}`
 export interface FeedParams {
   mergeFeedEnabled?: boolean
   mergeFeedSources?: string[]