diff options
author | crupest <crupest@outlook.com> | 2022-05-01 21:32:31 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-05-01 21:32:31 +0800 |
commit | 4869674e4ae54eacc5bb3e9573a8362c9c4b7d3a (patch) | |
tree | d47e37a7b500125aa443a8efff958401ed3f1178 /FrontEnd/src/views/timeline/Timeline.tsx | |
parent | 3f07b047df4d66f83047a5bb747c0a1665bceb6c (diff) | |
download | timeline-4869674e4ae54eacc5bb3e9573a8362c9c4b7d3a.tar.gz timeline-4869674e4ae54eacc5bb3e9573a8362c9c4b7d3a.tar.bz2 timeline-4869674e4ae54eacc5bb3e9573a8362c9c4b7d3a.zip |
...
Diffstat (limited to 'FrontEnd/src/views/timeline/Timeline.tsx')
-rw-r--r-- | FrontEnd/src/views/timeline/Timeline.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/FrontEnd/src/views/timeline/Timeline.tsx b/FrontEnd/src/views/timeline/Timeline.tsx index 84624313..8b438d62 100644 --- a/FrontEnd/src/views/timeline/Timeline.tsx +++ b/FrontEnd/src/views/timeline/Timeline.tsx @@ -196,9 +196,7 @@ const Timeline: React.FC<TimelineProps> = (props) => { <TimelinePostEdit timeline={timeline} onPosted={updatePosts} /> ) : user == null ? ( <TimelinePostEditNoLogin /> - ) : ( - <TimelineEmptyItem startSegmentLength={20} center="none" current /> - )} + ) : null} <TimelinePostListView posts={posts} onReload={updatePosts} /> </div> )} |