Visually improve the empty state of feeds (#4466)

This commit is contained in:
Paul Frazee
2024-06-10 13:44:21 -07:00
committed by GitHub
parent c2d7d23423
commit 4efd576f6a
4 changed files with 40 additions and 21 deletions
+1 -1
View File
@@ -468,7 +468,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 (
+1 -1
View File
@@ -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 (