From 1725a44f9b128d4048b0fb1d1a9ed0e910fa4c7a Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Tue, 9 Jun 2026 11:49:21 -0700 Subject: [PATCH] fix type error --- 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 29f12c2..eb2e83e 100644 --- a/js/desktop/src/features/particles/stream-top-bar.tsx +++ b/js/desktop/src/features/particles/stream-top-bar.tsx @@ -277,7 +277,7 @@ function MembersIndicator({ const humans = network?.humans ?? []; const isNetworkWide = visibility.mode === 'network'; - const allMemberIds = visibility.humanIds; + const allMemberIds = isNetworkWide ? humans.map((h) => h.id) : visibility.humanIds; const othersIds = isNetworkWide ? [] : allMemberIds.filter((id) => id != userId);