From a5e5adfa02efe5d78766792cc23c9979f989ca1a Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Tue, 21 Mar 2023 17:33:59 -0700 Subject: [PATCH] Fix incorrect follower count displayed. Closes #2854 --- web/pages/admin/federation/followers.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/web/pages/admin/federation/followers.tsx b/web/pages/admin/federation/followers.tsx index 47531af75..761692783 100644 --- a/web/pages/admin/federation/followers.tsx +++ b/web/pages/admin/federation/followers.tsx @@ -303,9 +303,7 @@ export default function FediverseFollowers() { }, ); - const followersTabTitle = ( - Followers {followers.length > 0 && `(${followers.length})`} - ); + const followersTabTitle = Followers {totalCount > 0 && `(${totalCount})`}; const followersTab = ( <>

The following accounts get notified when you go live or send a post.