From 33a13189588d1d229a89ec8e61c8839a832346f8 Mon Sep 17 00:00:00 2001 From: talksik Date: Tue, 24 Mar 2026 07:29:13 -0700 Subject: [PATCH] fix: hide author in "seen by" list --- js/src/features/particles/stream-view.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/features/particles/stream-view.tsx b/js/src/features/particles/stream-view.tsx index 32a4950..5d2a793 100644 --- a/js/src/features/particles/stream-view.tsx +++ b/js/src/features/particles/stream-view.tsx @@ -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;