From 03f41fbe282db5b666ab28325877c83a3ea925bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Mon, 28 Jul 2025 00:25:36 +0200 Subject: [PATCH] pl-fe: remove console.log MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nicole mikołajczyk --- packages/pl-fe/src/reducers/list-editor.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/pl-fe/src/reducers/list-editor.ts b/packages/pl-fe/src/reducers/list-editor.ts index 9f150b91f..bacf378ef 100644 --- a/packages/pl-fe/src/reducers/list-editor.ts +++ b/packages/pl-fe/src/reducers/list-editor.ts @@ -63,7 +63,6 @@ const listEditorReducer = (state: State = initialState, action: ListsAction): St case LIST_EDITOR_RESET: return initialState; case LIST_EDITOR_SETUP: - console.log(action.list); return create(state, (draft) => { draft.listId = action.list.id; draft.title = action.list.title;