From 0fb0974769e97a48dd7f9a4e7293ff83b88beff8 Mon Sep 17 00:00:00 2001 From: Peer Richelsen Date: Sun, 9 Feb 2025 20:36:23 +0100 Subject: [PATCH] feat: move apps to more (#19206) --- packages/features/shell/navigation/Navigation.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/features/shell/navigation/Navigation.tsx b/packages/features/shell/navigation/Navigation.tsx index 385cc0f091..a1e0c4be8a 100644 --- a/packages/features/shell/navigation/Navigation.tsx +++ b/packages/features/shell/navigation/Navigation.tsx @@ -55,6 +55,7 @@ const getNavigationItems = (orgBranding: OrganizationBranding): NavigationItemTy name: "apps", href: "/apps", icon: "grid-3x3", + moreOnMobile: true, isCurrent: ({ pathname: path, item }) => { // During Server rendering path is /v2/apps but on client it becomes /apps(weird..) return (path?.startsWith(item.href) ?? false) && !(path?.includes("routing-forms/") ?? false);