From a23b58e05cab68b5fd739581f35b874d3d93f924 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi?= Date: Tue, 7 Jan 2025 18:56:20 +0100 Subject: [PATCH] refactor: remove console log for sidebarIsOpen to clean up code --- src/app/components/Sidebar/index.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/components/Sidebar/index.tsx b/src/app/components/Sidebar/index.tsx index ed3952a..36ae100 100644 --- a/src/app/components/Sidebar/index.tsx +++ b/src/app/components/Sidebar/index.tsx @@ -35,8 +35,6 @@ export const Sidebar = ({ } }; - console.log("sidebarIsOpen", sidebarIsOpen); - handleResize(); window.addEventListener("resize", handleResize); return () => window.removeEventListener("resize", handleResize);