diff options
author | Eric Bailey <git@esb.lol> | 2025-01-21 18:45:33 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-22 00:45:33 +0000 |
commit | 6538013484a42a3b92001725ec2602dab86eb939 (patch) | |
tree | e6a2377105482f9046865a6071a845cb9b31491b /src/state/queries/post-feed.ts | |
parent | 1403570a6a231099c35c977afe38f84349d92018 (diff) | |
download | voidsky-6538013484a42a3b92001725ec2602dab86eb939.tar.zst |
Add videos tab to profile (#7517)
* Add videos tab to profile * Modify sourceContext for author feeds * Use actual typecast, better name for feedUri * Make EOF conditional * Clearer condition --------- Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
Diffstat (limited to 'src/state/queries/post-feed.ts')
-rw-r--r-- | src/state/queries/post-feed.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/state/queries/post-feed.ts b/src/state/queries/post-feed.ts index 72d6861d6..350970ffd 100644 --- a/src/state/queries/post-feed.ts +++ b/src/state/queries/post-feed.ts @@ -49,6 +49,7 @@ export type AuthorFilter = | 'posts_no_replies' | 'posts_and_author_threads' | 'posts_with_media' + | 'posts_with_video' type FeedUri = string type ListUri = string |