From e1b244e92b694e30b2e0c3e97e1bc7e92398f0b9 Mon Sep 17 00:00:00 2001 From: hknsh Date: Sun, 20 Oct 2024 21:54:06 +0100 Subject: [PATCH] chore: removed console log --- src/kweeks/comments.service.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/kweeks/comments.service.ts b/src/kweeks/comments.service.ts index 11bb311..c7eb03f 100644 --- a/src/kweeks/comments.service.ts +++ b/src/kweeks/comments.service.ts @@ -127,8 +127,6 @@ export class CommentsService { const is_comment_already_liked = await this.commentsRepository.isAlreadyLiked(comment.id, user_id); - console.log(is_comment_already_liked); - if (is_comment_already_liked) { await this.commentsRepository.dislike(comment.id, user_id); return {};