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)) {