about summary refs log tree commit diff
path: root/src/components/StarterPack/Main
diff options
context:
space:
mode:
authordan <dan.abramov@gmail.com>2024-12-10 20:57:53 +0000
committerGitHub <noreply@github.com>2024-12-10 20:57:53 +0000
commitd00879e628145ec6ded18048be212d09c0227ba8 (patch)
tree1a3b32f7640cc65f792b6162c12278c769cd504f /src/components/StarterPack/Main
parente052f5e198603246cb031e00d9cadc2ae4bb140d (diff)
downloadvoidsky-d00879e628145ec6ded18048be212d09c0227ba8.tar.zst
Disambiguate feed component naming (#7040)
* Rename posts/Feed* -> posts/PostFeed*

* Rename notifications/Feed* -> notifications/NotificationFeed*
Diffstat (limited to 'src/components/StarterPack/Main')
-rw-r--r--src/components/StarterPack/Main/PostsList.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/StarterPack/Main/PostsList.tsx b/src/components/StarterPack/Main/PostsList.tsx
index a5275ae87..f706e0bff 100644
--- a/src/components/StarterPack/Main/PostsList.tsx
+++ b/src/components/StarterPack/Main/PostsList.tsx
@@ -5,7 +5,7 @@ import {useLingui} from '@lingui/react'
 
 import {isNative} from '#/platform/detection'
 import {FeedDescriptor} from '#/state/queries/post-feed'
-import {Feed} from '#/view/com/posts/Feed'
+import {PostFeed} from '#/view/com/posts/PostFeed'
 import {EmptyState} from '#/view/com/util/EmptyState'
 import {ListRef} from '#/view/com/util/List'
 import {SectionRef} from '#/screens/Profile/Sections/types'
@@ -38,7 +38,7 @@ export const PostsList = React.forwardRef<SectionRef, ProfilesListProps>(
 
     return (
       <View>
-        <Feed
+        <PostFeed
           feed={feed}
           pollInterval={60e3}
           scrollElRef={scrollElRef}