From bb23dde3a50ab4c5f16b59c0eefe5a66778a3540 Mon Sep 17 00:00:00 2001 From: Piotr Gawron <p.gawron@atcomp.pl> Date: Fri, 7 Jun 2024 11:32:44 +0200 Subject: [PATCH] remove debug --- src/redux/comment/comment.selectors.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/redux/comment/comment.selectors.ts b/src/redux/comment/comment.selectors.ts index bce68955..7af687a2 100644 --- a/src/redux/comment/comment.selectors.ts +++ b/src/redux/comment/comment.selectors.ts @@ -23,8 +23,6 @@ export const allCommentsSelectorOfCurrentMap = createSelector( return []; } - // eslint-disable-next-line no-console - console.log(commentState.data); return (commentState.data || []) .filter(comment => comment.modelId === currentModelId) .map(comment => { -- GitLab