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) && (