From b23aa68254ae5a5e6ff77d317031664008d61594 Mon Sep 17 00:00:00 2001 From: Vanalite Date: Mon, 6 Oct 2025 18:12:28 +0700 Subject: [PATCH] feat: Hide projects for mobile version --- web-app/src/containers/LeftPanel.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web-app/src/containers/LeftPanel.tsx b/web-app/src/containers/LeftPanel.tsx index 6fbd40106..8fe4b3c24 100644 --- a/web-app/src/containers/LeftPanel.tsx +++ b/web-app/src/containers/LeftPanel.tsx @@ -56,7 +56,7 @@ const mainMenus = [ title: 'common:projects.title', icon: IconFolderPlus, route: route.project, - isEnabled: true, + isEnabled: !(IS_IOS || IS_ANDROID), }, ] @@ -402,7 +402,7 @@ const LeftPanel = () => { })} - {filteredProjects.length > 0 && ( + {filteredProjects.length > 0 && !(IS_IOS || IS_ANDROID) && (