fix: hide author in "seen by" list

This commit is contained in:
talksik
2026-03-24 07:29:13 -07:00
parent fa91ce0382
commit 33a1318958
+1 -1
View File
@@ -393,7 +393,7 @@ const SeenIndicator = ({ stream, currentParticle, networkId }: { stream: Particl
const seenUserEmails = seenUserIds
.map((userId) => network?.humans?.find((h) => h.id === userId)?.email)
.filter((email): email is string => !!email);
.filter((email): email is string => !!email && email !== currentParticle.created_by_email);
if (seenUserIds.length === 0) return null;