diff --git a/js/desktop/src/features/particles/stream-top-bar.tsx b/js/desktop/src/features/particles/stream-top-bar.tsx index eb2e83e..e5cca4b 100644 --- a/js/desktop/src/features/particles/stream-top-bar.tsx +++ b/js/desktop/src/features/particles/stream-top-bar.tsx @@ -277,7 +277,9 @@ function MembersIndicator({ const humans = network?.humans ?? []; const isNetworkWide = visibility.mode === 'network'; - const allMemberIds = isNetworkWide ? humans.map((h) => h.id) : visibility.humanIds; + const allMemberIds = isNetworkWide + ? humans.map((h) => h.id) + : visibility.humanIds; const othersIds = isNetworkWide ? [] : allMemberIds.filter((id) => id != userId);