콘솔 삭제

This commit is contained in:
kimdaae328 2025-02-03 14:17:24 +09:00
parent 2e013a54be
commit b1dec17cc0
2 changed files with 0 additions and 2 deletions

View File

@ -104,7 +104,6 @@ const handleDelete = async () => {
alert('게시물이 성공적으로 삭제되었습니다.');
router.push({ name: 'BoardList' });
} catch (error) {
console.error('게시물 삭제 중 오류 발생:', error);
alert('게시물 삭제에 실패했습니다.');
}
}

View File

@ -120,7 +120,6 @@ const fetchBoardDetails = async () => {
// API
const boardDetail = data.boardDetail || {};
// console.log('boardDetail:', boardDetail);
profileName.value = data.author || '익명 사용자';
boardTitle.value = data.title || '제목 없음';