From f54ab84dd10ae3a33a7f5e9053f0563649c4afe4 Mon Sep 17 00:00:00 2001 From: codytseng Date: Thu, 13 Mar 2025 14:31:07 +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/ReplyNoteList/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) } }