about summary refs log tree commit diff
path: root/src/view/screens/ProfileList.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2024-06-10 13:44:21 -0700
committerGitHub <noreply@github.com>2024-06-10 13:44:21 -0700
commit4efd576f6a5102e871784c047e108e808839e4b8 (patch)
treea6c017cbd2fbbf56fb7bdf1eea0cb84927d2d828 /src/view/screens/ProfileList.tsx
parentc2d7d23423fbd0064c192dd3998bfc692aa6248c (diff)
downloadvoidsky-4efd576f6a5102e871784c047e108e808839e4b8.tar.zst
Visually improve the empty state of feeds (#4466)
Diffstat (limited to 'src/view/screens/ProfileList.tsx')
-rw-r--r--src/view/screens/ProfileList.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/screens/ProfileList.tsx b/src/view/screens/ProfileList.tsx
index 0c2cecbfc..72de428f3 100644
--- a/src/view/screens/ProfileList.tsx
+++ b/src/view/screens/ProfileList.tsx
@@ -726,7 +726,7 @@ const FeedSection = React.forwardRef<SectionRef, FeedSectionProps>(
     }, [onScrollToTop, isScreenFocused])
 
     const renderPostsEmpty = useCallback(() => {
-      return <EmptyState icon="feed" message={_(msg`This feed is empty!`)} />
+      return <EmptyState icon="hashtag" message={_(msg`This feed is empty.`)} />
     }, [_])
 
     return (