From 1518ba04ddf37a43d797baec4a95a5522a99b7e8 Mon Sep 17 00:00:00 2001 From: Maarten Date: Fri, 5 Jun 2026 14:19:19 +0200 Subject: [PATCH] fix(nav): hide Add App button when sidebarAppsEnabled is false --- components/layout/navigation-rail.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/layout/navigation-rail.tsx b/components/layout/navigation-rail.tsx index fc6649ff..cbef6757 100644 --- a/components/layout/navigation-rail.tsx +++ b/components/layout/navigation-rail.tsx @@ -546,7 +546,7 @@ export function NavigationRail({ })} {/* Manage apps button */} - {onManageApps && ( + {sidebarAppsEnabled && onManageApps && (