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/components/StarterPack/Main | |
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/components/StarterPack/Main')
-rw-r--r-- | src/components/StarterPack/Main/PostsList.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/StarterPack/Main/PostsList.tsx b/src/components/StarterPack/Main/PostsList.tsx index c19c6bc63..0ff84ff45 100644 --- a/src/components/StarterPack/Main/PostsList.tsx +++ b/src/components/StarterPack/Main/PostsList.tsx @@ -18,7 +18,7 @@ interface ProfilesListProps { export const PostsList = React.forwardRef<SectionRef, ProfilesListProps>( function PostsListImpl({listUri, headerHeight, scrollElRef}, ref) { - const feed: FeedDescriptor = `list|${listUri}|as_following` + const feed: FeedDescriptor = `list|${listUri}` const {_} = useLingui() const onScrollToTop = useCallback(() => { |