From 53152e3fb11f78b107cb895305bad140022e31a1 Mon Sep 17 00:00:00 2001 From: Ido Salomon Date: Fri, 11 Apr 2025 20:52:45 +0300 Subject: [PATCH] fix build --- client/src/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/App.tsx b/client/src/App.tsx index 6e66e6e..61a5b69 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -45,7 +45,7 @@ import Sidebar from "./components/Sidebar"; import ToolsTab from "./components/ToolsTab"; import { DEFAULT_INSPECTOR_CONFIG } from "./lib/constants"; import { InspectorConfig } from "./lib/configurationTypes"; -import { getMCPProxyAddress } from "./utils/configUtils"; +import { getMCPProxyAddress, getMCPServerRequestTimeout } from "./utils/configUtils"; import { useToast } from "@/hooks/use-toast"; const params = new URLSearchParams(window.location.search); @@ -118,7 +118,7 @@ const App = () => { }); const [headerName, setHeaderName] = useState(() => { - return localStorage.getItem("lastHeaderName") || "Authorization"; + return localStorage.getItem("lastHeaderName") || ""; }); const [pendingSampleRequests, setPendingSampleRequests] = useState<