Skip to content

Commit 7dc7b09

Browse files
Change var to let
1 parent 66abc3b commit 7dc7b09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/utils/configUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
} from "@/lib/constants";
66

77
export const getMCPProxyAddress = (config: InspectorConfig): string => {
8-
var proxyFullAddress = config.MCP_PROXY_FULL_ADDRESS.value as string;
8+
let proxyFullAddress = config.MCP_PROXY_FULL_ADDRESS.value as string;
99
if (proxyFullAddress) {
1010
proxyFullAddress = proxyFullAddress.replace(/\/+$/, "");
1111
return proxyFullAddress;

0 commit comments

Comments
 (0)