show private indicator for appropriate streams #255

Merged
talksik merged 5 commits from show-private-for-personal-streams into main 2026-06-09 19:38:52 +00:00
Showing only changes of commit f90b81acfd - Show all commits
@@ -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);