From 209674ed7764d1d3f2e905c5ecbbc7a7d585a5e9 Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Tue, 9 Jun 2026 11:42:23 -0700 Subject: [PATCH] invalid calculation --- js/desktop/src/features/particles/stream-top-bar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/desktop/src/features/particles/stream-top-bar.tsx b/js/desktop/src/features/particles/stream-top-bar.tsx index c6b19e7..1306f6b 100644 --- a/js/desktop/src/features/particles/stream-top-bar.tsx +++ b/js/desktop/src/features/particles/stream-top-bar.tsx @@ -284,7 +284,7 @@ function MembersIndicator({ .slice(0, 3) .map((id) => humans.find((h) => h.id === id)) .filter((h): h is NonNullable => !!h); - const overflow = othersIds.length - othersIds.length; + const overflow = othersIds.length - shownMembers.length; return (