From 9615a7e778874759561206117e66557dd5657f24 Mon Sep 17 00:00:00 2001 From: codytseng Date: Fri, 7 Nov 2025 10:53:42 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/NoteList/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/NoteList/index.tsx b/src/components/NoteList/index.tsx index ba5699c9..6c016f8a 100644 --- a/src/components/NoteList/index.tsx +++ b/src/components/NoteList/index.tsx @@ -204,6 +204,7 @@ const NoteList = forwardRef( return newEvents.filter((event: Event) => { if (shouldHideEvent(event)) return false + if (hideReplies && isReplyNoteEvent(event)) return false const key = getEventKey(event) if (keySet.has(key)) {