diff --git a/src/view/com/posts/Feed.tsx b/src/view/com/posts/Feed.tsx index 3a2bc61895..d37e513776 100644 --- a/src/view/com/posts/Feed.tsx +++ b/src/view/com/posts/Feed.tsx @@ -20,7 +20,7 @@ export const Feed = observer(function Feed({ feed: FeedModel style?: StyleProp scrollElRef?: MutableRefObject | null> - onPressCompose?: () => void + onPressCompose: () => void onPressTryAgain?: () => void }) { // TODO optimize renderItem or FeedItem, we're getting this notice from RN: -prf @@ -65,7 +65,12 @@ export const Feed = observer(function Feed({ onEndReached={onEndReached} /> )} - {feed.isEmpty && } + {feed.isEmpty && ( + + + + + )} ) })