diff --git a/webui/react-ui/src/App.jsx b/webui/react-ui/src/App.jsx index d0ee160..2aeb250 100644 --- a/webui/react-ui/src/App.jsx +++ b/webui/react-ui/src/App.jsx @@ -114,12 +114,6 @@ function App() { - {/* Footer */} - ) } diff --git a/webui/react-ui/src/pages/ImportAgent.jsx b/webui/react-ui/src/pages/ImportAgent.jsx index ea87b18..a117918 100644 --- a/webui/react-ui/src/pages/ImportAgent.jsx +++ b/webui/react-ui/src/pages/ImportAgent.jsx @@ -26,7 +26,7 @@ function ImportAgent() { const formData = new FormData(); formData.append('file', file); - await agentApi.importAgentConfig(formData); + await agentApi.importAgent(formData); showToast('Agent imported successfully', 'success'); navigate('/agents'); } catch (err) { @@ -58,7 +58,7 @@ function ImportAgent() {
or
-