From e74e4761e0423aaf9a93bd65f5c64be382747b9a Mon Sep 17 00:00:00 2001 From: Starfall Date: Sat, 31 Jul 2021 12:30:39 -0500 Subject: Always show follow requests link on single-column view Closes mastodon/mastodon#16178 --- .../mastodon/features/ui/components/follow_requests_nav_link.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/javascript/mastodon/features/ui/components/follow_requests_nav_link.js b/app/javascript/mastodon/features/ui/components/follow_requests_nav_link.js index 950ed7b27..ec21a9055 100644 --- a/app/javascript/mastodon/features/ui/components/follow_requests_nav_link.js +++ b/app/javascript/mastodon/features/ui/components/follow_requests_nav_link.js @@ -29,10 +29,6 @@ class FollowRequestsNavLink extends React.Component { render () { const { count } = this.props; - if (count === 0) { - return null; - } - return ; } -- cgit