From 98922f1892a4a9481fb189ec53cd7bb1fe081981 Mon Sep 17 00:00:00 2001 From: mroxso <24775431+mroxso@users.noreply.github.com> Date: Mon, 31 Mar 2025 23:00:13 +0200 Subject: [PATCH] Update components/CommentsCompontent.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- components/CommentsCompontent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/CommentsCompontent.tsx b/components/CommentsCompontent.tsx index ee4bffb..bf9d1f6 100644 --- a/components/CommentsCompontent.tsx +++ b/components/CommentsCompontent.tsx @@ -19,7 +19,7 @@ const CommentsCompontent: React.FC = ({ pubkey, event } }, }); - // filter out all events with more then 1 "e" tag. other tags are ok + // filter out all events with more than 1 "e" tag. other tags are ok // this shows only the top level comments let filteredEvents = events.filter((event) => { return event.tags.filter((tag) => tag[0] === 'e').length === 1;