diff --git a/src/app/components/Sidebar.jsx b/src/app/components/Sidebar.jsx
index c88f8db..74f9662 100644
--- a/src/app/components/Sidebar.jsx
+++ b/src/app/components/Sidebar.jsx
@@ -71,25 +71,7 @@ const Sidebar = ({ sidebarOpen, setSidebarOpen, isCollapsed }) => {
>
{/* Logo Section */}
-
- {isCollapsed ? (
-
- ) : (
-
- )}
-
+
{/* MENU section - Only show when not collapsed */}
{!isCollapsed && (
@@ -115,11 +97,11 @@ const Sidebar = ({ sidebarOpen, setSidebarOpen, isCollapsed }) => {
onClick={closeSidebarOnMobile}
>

{
- e.target.src = darkMode ? "/images/icons/grid.svg" : "/images/icons/grid-white.svg";
+ e.target.src = darkMode ? "/images/icons/grid.svg" : "/images/icons/grid.svg";
e.target.className = 'w-5'; // Remove filter if fallback
}}
/>