diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-06-10 13:44:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-10 13:44:21 -0700 |
commit | 4efd576f6a5102e871784c047e108e808839e4b8 (patch) | |
tree | a6c017cbd2fbbf56fb7bdf1eea0cb84927d2d828 /src/view/screens/ProfileList.tsx | |
parent | c2d7d23423fbd0064c192dd3998bfc692aa6248c (diff) | |
download | voidsky-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.tsx | 2 |
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 ( |