diff --git a/src/App.tsx b/src/App.tsx index 56f998c..47c7d5b 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -5,13 +5,11 @@ import { WorkflowList } from "./components/WorkflowList"; import { WorkflowEditor } from "./components/WorkflowEditor"; import { ExecutionPanel } from "./components/ExecutionPanel"; import { TestingPanel } from "./components/TestingPanel"; -import { ApiKeysSettings } from "./components/ApiKeysSettings"; import { useWorkflowStore } from "./store/workflowStore"; function App() { const [currentView, setCurrentView] = useState<"list" | "editor">("list"); const [, setCurrentWorkflowId] = useState(null); - const [showApiKeysSettings, setShowApiKeysSettings] = useState(false); const { createWorkflow, loadWorkflow } = useWorkflowStore(); const handleCreateWorkflow = (workflowName?: string) => { @@ -36,35 +34,6 @@ function App() {
- {/* Settings Button */} -
- -
- {currentView === "list" ? ( )} - - {/* API Keys Settings Modal */} - {showApiKeysSettings && ( - setShowApiKeysSettings(false)} /> - )}
); }