diff --git a/desktop/src/components/Sidebar.tsx b/desktop/src/components/Sidebar.tsx index 3f8d3aa..9f1678f 100644 --- a/desktop/src/components/Sidebar.tsx +++ b/desktop/src/components/Sidebar.tsx @@ -1,19 +1,10 @@ import { useState } from 'react'; -import { motion, AnimatePresence } from 'framer-motion'; import { SquarePen, MessageSquare, Bot, Search, X, Settings } from 'lucide-react'; import { ConversationList } from './ConversationList'; import { CloneManager } from './CloneManager'; import { useChatStore } from '../store/chatStore'; -import { defaultTransition } from '../lib/animations'; - -// Simple fade variants for sidebar tab content (no staggerChildren) -const sidebarTabVariants = { - hidden: { opacity: 0 }, - visible: { opacity: 1, transition: { duration: 0.15 } }, - exit: { opacity: 0, transition: { duration: 0.1 } }, -}; export type MainViewType = 'chat'; @@ -96,18 +87,8 @@ export function Sidebar({ {/* Content area */}
- - {activeTab === 'conversations' && ( -
+
{/* Search in conversations */}
@@ -130,9 +111,7 @@ export function Sidebar({
)} - {activeTab === 'clones' && } - - + {activeTab === 'clones' &&
}
{/* Bottom user bar */}