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) => (