refactor: dashboard design critique fixes #122

Merged
chihlasm merged 13 commits from refactor/dashboard-design-critique into main 2026-03-30 04:39:37 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 0484a1cb12 - Show all commits

View File

@@ -1,6 +1,6 @@
import { useEffect, useState } from 'react'
import { useNavigate, Link } from 'react-router-dom'
import { Play, Pencil, Share2, Trash2, GitBranch, Clock, TrendingUp } from 'lucide-react'
import { Play, Pencil, Share2, Trash2, GitBranch, Clock, TrendingUp, FolderTree, Plus, ListOrdered, Wrench } from 'lucide-react'
import { PageMeta } from '@/components/common/PageMeta'
import { StaggerList } from '@/components/common/StaggerList'
import { Button } from '@/components/ui/Button'

View File

@@ -26,7 +26,7 @@ const TABS = [
type TabId = typeof TABS[number]['id']
export function SessionHistoryPage() {
export default function SessionHistoryPage() {
const navigate = useNavigate()
const [searchParams, setSearchParams] = useSearchParams()
const [activeTab, setActiveTab] = useState<TabId>('ai')