fix console log

This commit is contained in:
Kostiantyn Stoliarskyi 2023-05-09 14:42:31 +03:00
parent b8b8130eef
commit 0c54d73f17
1 changed files with 0 additions and 1 deletions

View File

@ -8,7 +8,6 @@ export function initComments() {
if (deleteCommentBtn && deleteCommentInputOnModal) {
deleteCommentBtn.addEventListener('click', () => {
const id = deleteCommentBtn.getAttribute('data-comment-id');
console.log(id);
deleteCommentInputOnModal.value = id;
});
}