diff --git a/src/components/board/BoardProfile.vue b/src/components/board/BoardProfile.vue
index 00a4a87..560e758 100644
--- a/src/components/board/BoardProfile.vue
+++ b/src/components/board/BoardProfile.vue
@@ -33,7 +33,7 @@
-
+
diff --git a/src/views/board/BoardView.vue b/src/views/board/BoardView.vue
index 7b4e57e..660d95f 100644
--- a/src/views/board/BoardView.vue
+++ b/src/views/board/BoardView.vue
@@ -336,7 +336,7 @@
createdAtRaw: comment.LOCCMTRDT, // 작성일
// createdAt: formattedDate(comment.LOCCMTRDT), // 작성일(노출용)
// createdAtRaw: new Date(comment.LOCCMTUDT), // 수정순
- createdAt: formattedDate(comment.LOCCMTUDT) + (comment.LOCCMTUDT !== comment.LOCCMTRDT ? ' (수정됨)' : ''), // 수정일(노출용)
+ createdAt: formattedDate(comment.LOCCMTUDT) + (comment.content === '삭제된 댓글입니다' && comment.LOCCMTUDT !== comment.LOCCMTRDT ? ' (수정됨)' : ''), // 수정일(노출용)
children: [], // 대댓글을 담을 배열
updateAtRaw: comment.LOCCMTUDT,
}))