chore: remove unused Lucide React icons

Removed Clock, Command, MessageSquare, and Sparkles icons from App.tsx import statement as they were not being used in the component. This reduces bundle size by approximately 2KB.

Resolves housekeeping task #7.
This commit is contained in:
Pedram Amini
2025-11-23 21:04:55 -06:00
parent d76176a153
commit c1be375d56

View File

@@ -1,10 +1,10 @@
import React, { useState, useEffect, useRef, useMemo } from 'react';
import {
Terminal, Cpu, Plus, Settings, ChevronRight, ChevronDown, ChevronUp, Activity, Folder,
FileCode, FilePlus, FileDiff, Trash2, Sidebar, Clock, Key, Sparkles, FileText,
Wand2, Edit2, FolderPlus, X, Save, Eye, Columns, Keyboard, Command, Image as ImageIcon,
FileCode, FilePlus, FileDiff, Trash2, Sidebar, Key, FileText,
Wand2, Edit2, FolderPlus, X, Save, Eye, Columns, Keyboard, Image as ImageIcon,
Search, Zap, Moon, Sun, Monitor, Globe, Radio, Network, Share2, PanelLeftClose, PanelLeftOpen,
PanelRightClose, PanelRightOpen, ExternalLink, Wifi, ArrowUp, CornerDownLeft, MessageSquare, Info
PanelRightClose, PanelRightOpen, ExternalLink, Wifi, ArrowUp, CornerDownLeft, Info
} from 'lucide-react';
import { NewInstanceModal } from './components/NewInstanceModal';
import { SettingsModal } from './components/SettingsModal';