From b0649de16f6c8e2e0c1659fded4c615cd0891586 Mon Sep 17 00:00:00 2001 From: Eirik Ola Aksnes Date: Tue, 15 Nov 2022 10:47:19 +0100 Subject: [PATCH] refactor: remove console log (need to rebase after PR) --- web/src/features/todos/todo-list/TodoList.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/web/src/features/todos/todo-list/TodoList.tsx b/web/src/features/todos/todo-list/TodoList.tsx index a73bd2df..232976da 100644 --- a/web/src/features/todos/todo-list/TodoList.tsx +++ b/web/src/features/todos/todo-list/TodoList.tsx @@ -42,8 +42,6 @@ const TodoList = () => { const { todos, isLoading, addItem, removeItem, toggleItem, error } = useTodos() - console.log(error) - if (error) return
{error?.response?.data.message ?? 'Something went wrong!'}