fix: hide author in "seen by" list
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user