diff options
author | dan <dan.abramov@gmail.com> | 2024-09-13 22:30:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-13 22:30:09 +0100 |
commit | ce3893d8169cb63e982b57d18817c9155c2e874c (patch) | |
tree | e3bd8ed4ad85656168f404bd69f24ea398bfc9a6 /src/state/queries/post-feed.ts | |
parent | 88813f57c98041507eec708294272387cdc4a0f2 (diff) | |
download | voidsky-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.ts | 2 |
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[] |