diff --git a/src/components/board/BoardCommentArea.vue b/src/components/board/BoardCommentArea.vue index 0a95249..34f4a2e 100644 --- a/src/components/board/BoardCommentArea.vue +++ b/src/components/board/BoardCommentArea.vue @@ -93,7 +93,8 @@ function handleCommentSubmit() { emit('submitComment', { comment: comment.value, password: isCheck.value ? password.value : '', - isCheck: isCheck.value + isCheck: isCheck.value, + // authorId: isCheck.value ? null : currentUserId.value, // 익명 체크되면 ID null 처리 }); }