From 0c54d73f1727cd8e22022b83d131888c4b03ee62 Mon Sep 17 00:00:00 2001 From: Kostiantyn Stoliarskyi Date: Tue, 9 May 2023 14:42:31 +0300 Subject: [PATCH] fix console log --- src/comment.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/comment.ts b/src/comment.ts index 94a2f18..bf0e156 100644 --- a/src/comment.ts +++ b/src/comment.ts @@ -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; }); }