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/screens/Profile/Sections/Feed.tsx | |
parent | c2d7d23423fbd0064c192dd3998bfc692aa6248c (diff) | |
download | voidsky-4efd576f6a5102e871784c047e108e808839e4b8.tar.zst |
Visually improve the empty state of feeds (#4466)
Diffstat (limited to 'src/screens/Profile/Sections/Feed.tsx')
-rw-r--r-- | src/screens/Profile/Sections/Feed.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/Profile/Sections/Feed.tsx b/src/screens/Profile/Sections/Feed.tsx index cc52eef3b..201c8f7e0 100644 --- a/src/screens/Profile/Sections/Feed.tsx +++ b/src/screens/Profile/Sections/Feed.tsx @@ -56,7 +56,7 @@ export const ProfileFeedSection = React.forwardRef< })) const renderPostsEmpty = React.useCallback(() => { - return <EmptyState icon="feed" message={_(msg`This feed is empty!`)} /> + return <EmptyState icon="growth" message={_(msg`No posts yet.`)} /> }, [_]) React.useEffect(() => { |