fix type error

This commit is contained in:
Arjun Patel
2026-06-09 11:49:21 -07:00
parent 5dbd6929e6
commit 1725a44f9b
@@ -277,7 +277,7 @@ function MembersIndicator({
const humans = network?.humans ?? []; const humans = network?.humans ?? [];
const isNetworkWide = visibility.mode === 'network'; const isNetworkWide = visibility.mode === 'network';
const allMemberIds = 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);