From 011a135ee6085e69e192c343735a96ab4c784e9f Mon Sep 17 00:00:00 2001 From: Nikhil-Doye Date: Sun, 19 Oct 2025 00:44:51 -0400 Subject: [PATCH] Remove API Keys Settings functionality from App component - Eliminated the API Keys settings button and associated state management from the App component. - Removed the API Keys Settings modal, streamlining the user interface and focusing on core workflow functionalities. - This change reflects a shift away from the API Keys management feature, simplifying the overall application structure. --- src/App.tsx | 36 ------------------------------------ 1 file changed, 36 deletions(-) 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)} /> - )}
); }