게시판 삭제된 댓글 안보이게

This commit is contained in:
dyhj625 2025-03-06 09:47:37 +09:00
parent 0cfeb2fc1d
commit 5ae3d3bc75

View File

@ -306,7 +306,8 @@ const fetchComments = async (page = 1) => {
createdAtRaw: new Date(comment.LOCCMTRDT), //
createdAt: formattedDate(comment.LOCCMTRDT), //
children: [], //
updateAtRaw: new Date(comment.LOCCMTUDT),
updateAtRaw: comment.LOCCMTUDT,
}));
commentsList.sort((a, b) => b.createdAtRaw - a.createdAtRaw);