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);