From d08215d524ba99398d6c36a05252eabb90fb84e2 Mon Sep 17 00:00:00 2001 From: Jason Staack Date: Sat, 21 Mar 2026 12:21:16 -0500 Subject: [PATCH] feat(ui): remove ContextStrip from layout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All ContextStrip features (tenant selector, theme toggle, connection status, user menu, logout) are now in the sidebar. The top bar is removed — content area gets the full vertical space. Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/components/layout/AppLayout.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/src/components/layout/AppLayout.tsx b/frontend/src/components/layout/AppLayout.tsx index 3a755bb..d03345a 100644 --- a/frontend/src/components/layout/AppLayout.tsx +++ b/frontend/src/components/layout/AppLayout.tsx @@ -1,6 +1,5 @@ import { type ReactNode } from 'react' import { Sidebar } from './Sidebar' -import { ContextStrip } from './ContextStrip' import { ShortcutsDialog } from './ShortcutsDialog' import { CommandPalette } from '@/components/command-palette/CommandPalette' import { Toaster } from '@/components/ui/toast' @@ -20,7 +19,6 @@ export function AppLayout({ children }: AppLayoutProps) {
-
{children}