diff --git a/src/components/ReplyNoteList/index.tsx b/src/components/ReplyNoteList/index.tsx index f4e62d1b..589f6f85 100644 --- a/src/components/ReplyNoteList/index.tsx +++ b/src/components/ReplyNoteList/index.tsx @@ -73,7 +73,7 @@ export default function ReplyNoteList({ const customEvent = data as CustomEvent const evt = customEvent.detail const rootId = getRootEventHexId(evt) - if (rootId === rootInfo.id) { + if (rootId === rootInfo.id && isReplyNoteEvent(evt)) { onNewReply(evt) } }