diff options
author | Eric Bailey <git@esb.lol> | 2024-06-14 11:59:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-14 17:59:53 +0100 |
commit | f8c58a68a9a78689f9f636f3d739d9574a18ff7b (patch) | |
tree | 15b27b4a29b04e3643fdf29ef16db791cf7c710d /src | |
parent | 641a36c21dd8adf9d57353c41dfbf7ec5a48c8cd (diff) | |
download | voidsky-f8c58a68a9a78689f9f636f3d739d9574a18ff7b.tar.zst |
Fix count again (#4516)
Diffstat (limited to 'src')
-rw-r--r-- | src/components/KnownFollowers.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/KnownFollowers.tsx b/src/components/KnownFollowers.tsx index a8bdb763d..63f61ce85 100644 --- a/src/components/KnownFollowers.tsx +++ b/src/components/KnownFollowers.tsx @@ -100,7 +100,7 @@ function KnownFollowersInner({ moderation, } }) - const count = cachedKnownFollowers.count - Math.min(slice.length, 2) + const count = cachedKnownFollowers.count return ( <Link |