fix: remove filtering replies by created_at

This commit is contained in:
codytseng
2025-05-08 09:21:25 +08:00
parent 7a63f475da
commit bf6b96fd91

View File

@@ -143,8 +143,6 @@ export default function ReplyNoteList({
const rootEventId = getRootEventHexId(event) ?? event.id
const isRootEvent = rootEventId === event.id
for (const evt of events) {
if (evt.created_at < event.created_at) continue
const parentEventId = getParentEventHexId(evt)
if (parentEventId) {
const parentReplyInfo = replyMap.get(parentEventId)