chore: update component exports and fix merge artifacts

- Export new preview components
- Remove unused imports from upstream merge
- Update .gitignore patterns
- Clean up TypeScript errors from merge conflicts
This commit is contained in:
Mufeed VH
2025-06-23 00:31:13 +05:30
parent 7eab880bbc
commit abe0891b0b
5 changed files with 42 additions and 17 deletions

View File

@@ -1,10 +1,9 @@
import React, { useState } from "react";
import { motion, AnimatePresence } from "framer-motion";
import {
ChevronDown,
ChevronRight,
Loader2,
CheckCircle2,
ChevronRight,
Loader2,
CheckCircle2,
AlertCircle,
Terminal,
FileText,
@@ -96,8 +95,7 @@ function getToolDescription(toolCall: ToolCall): string {
export const CollapsibleToolResult: React.FC<CollapsibleToolResultProps> = ({
toolCall,
toolResult,
className,
children
className
}) => {
const [isExpanded, setIsExpanded] = useState(false);
const isPending = !toolResult;