This commit is contained in:
Arjun Patel
2026-06-09 12:30:17 -07:00
parent 1725a44f9b
commit f90b81acfd
@@ -277,7 +277,9 @@ function MembersIndicator({
const humans = network?.humans ?? []; const humans = network?.humans ?? [];
const isNetworkWide = visibility.mode === 'network'; 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 const othersIds = isNetworkWide
? [] ? []
: allMemberIds.filter((id) => id != userId); : allMemberIds.filter((id) => id != userId);