From 5a88146cc9dc34f23ba582f34a40aa3c53cc4008 Mon Sep 17 00:00:00 2001 From: ciregenz Date: Wed, 10 Jun 2026 00:52:08 -0700 Subject: [PATCH] [eric] frontend: customization group starts collapsed, config rows are disclosure not daily nav --- frontend/src/app/components/Layout/AppShell.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/components/Layout/AppShell.tsx b/frontend/src/app/components/Layout/AppShell.tsx index 208c85c2..fc20e932 100644 --- a/frontend/src/app/components/Layout/AppShell.tsx +++ b/frontend/src/app/components/Layout/AppShell.tsx @@ -79,7 +79,8 @@ const AppShell: React.FC = () => { const location = useLocation(); const [dashboardsExpanded, setDashboardsExpanded] = useState(true); const [appsExpanded, setAppsExpanded] = useState(true); - const [customizationExpanded, setCustomizationExpanded] = useState(true); + // Collapsed by default: config rows are progressive disclosure, not daily nav. Onboarding reads data-expanded and clicks to open when it needs them. + const [customizationExpanded, setCustomizationExpanded] = useState(false); // Starts collapsed so a fresh boot lands on a clean canvas; the toggle brings it back. const [sidebarCollapsed, setSidebarCollapsed] = useState(true); const [renamingDashboardId, setRenamingDashboardId] = useState(null);