Skip to content

Commit 53152e3

Browse files
committed
fix build
1 parent aeac3ac commit 53152e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import Sidebar from "./components/Sidebar";
4545
import ToolsTab from "./components/ToolsTab";
4646
import { DEFAULT_INSPECTOR_CONFIG } from "./lib/constants";
4747
import { InspectorConfig } from "./lib/configurationTypes";
48-
import { getMCPProxyAddress } from "./utils/configUtils";
48+
import { getMCPProxyAddress, getMCPServerRequestTimeout } from "./utils/configUtils";
4949
import { useToast } from "@/hooks/use-toast";
5050

5151
const params = new URLSearchParams(window.location.search);
@@ -118,7 +118,7 @@ const App = () => {
118118
});
119119

120120
const [headerName, setHeaderName] = useState<string>(() => {
121-
return localStorage.getItem("lastHeaderName") || "Authorization";
121+
return localStorage.getItem("lastHeaderName") || "";
122122
});
123123

124124
const [pendingSampleRequests, setPendingSampleRequests] = useState<

0 commit comments

Comments
 (0)