From 6afdb6d81dd849957000a8f538e85bc3863b1f52 Mon Sep 17 00:00:00 2001 From: Michael Chihlas Date: Sun, 15 Mar 2026 10:55:20 -0400 Subject: [PATCH] fix(ui): default Sessions page to Active tab, reorder tabs Active sessions are what engineers care about most. Tab order is now Active, Prepared, Completed, All. Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/pages/SessionHistoryPage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/SessionHistoryPage.tsx b/frontend/src/pages/SessionHistoryPage.tsx index 46708547..49f89560 100644 --- a/frontend/src/pages/SessionHistoryPage.tsx +++ b/frontend/src/pages/SessionHistoryPage.tsx @@ -21,7 +21,7 @@ export function SessionHistoryPage() { const [hasMore, setHasMore] = useState(false) const [trees, setTrees] = useState([]) const [isLoading, setIsLoading] = useState(true) - const [filter, setFilter] = useState<'all' | 'completed' | 'active' | 'prepared'>('all') + const [filter, setFilter] = useState<'all' | 'completed' | 'active' | 'prepared'>('active') // Close session popover state const [closingSessionId, setClosingSessionId] = useState(null) @@ -227,7 +227,7 @@ export function SessionHistoryPage() { {/* Filter Tabs */}
- {(['all', 'active', 'completed', 'prepared'] as const).map((tab) => ( + {(['active', 'prepared', 'completed', 'all'] as const).map((tab) => (