chore: removed console log

This commit is contained in:
Hackntosh 2024-10-20 21:54:06 +01:00
parent 86b9f6ead8
commit e1b244e92b

View file

@ -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 {};