From 0484a1cb12734ff11f1c2ac237f86ce9cfc8a0a4 Mon Sep 17 00:00:00 2001 From: chihlasm Date: Mon, 30 Mar 2026 01:54:48 +0000 Subject: [PATCH] fix: restore removed icon imports in MyTreesPage, add default export to SessionHistoryPage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - FolderTree, Plus, ListOrdered, Wrench are still used in empty state and tree card rendering — restore the imports - SessionHistoryPage needs default export for lazyWithRetry Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/pages/MyTreesPage.tsx | 2 +- frontend/src/pages/SessionHistoryPage.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/MyTreesPage.tsx b/frontend/src/pages/MyTreesPage.tsx index 85894992..242f2e4d 100644 --- a/frontend/src/pages/MyTreesPage.tsx +++ b/frontend/src/pages/MyTreesPage.tsx @@ -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' diff --git a/frontend/src/pages/SessionHistoryPage.tsx b/frontend/src/pages/SessionHistoryPage.tsx index fb08106a..768e3f73 100644 --- a/frontend/src/pages/SessionHistoryPage.tsx +++ b/frontend/src/pages/SessionHistoryPage.tsx @@ -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('ai')