diff --git a/src/views/home/discover-tab.tsx b/src/views/home/discover-tab.tsx index e97bb9d6a..d13263b4e 100644 --- a/src/views/home/discover-tab.tsx +++ b/src/views/home/discover-tab.tsx @@ -53,7 +53,7 @@ export const DiscoverTab = () => { const timeline = events.filter(isNote); return ( - + {timeline.map((event) => ( ))} diff --git a/src/views/home/following-tab.tsx b/src/views/home/following-tab.tsx index 897aaf6f9..902272c11 100644 --- a/src/views/home/following-tab.tsx +++ b/src/views/home/following-tab.tsx @@ -30,7 +30,7 @@ export const FollowingTab = () => { const timeline = showReplies ? events : events.filter(isNote); return ( - + Show Replies diff --git a/src/views/home/global-tab.tsx b/src/views/home/global-tab.tsx index f4901b795..267774846 100644 --- a/src/views/home/global-tab.tsx +++ b/src/views/home/global-tab.tsx @@ -32,40 +32,34 @@ export const GlobalTab = () => { const timeline = showReplies ? events : events.filter(isNote); return ( - <> - - - - - - - Show Replies - - - - {timeline.map((event) => ( - - ))} - {loading ? ( - - ) : ( - - )} + + + + + + + Show Replies + + - + {timeline.map((event) => ( + + ))} + {loading ? : } + ); };