Skip to content

Commit da003c7

Browse files
Change '' to ""
1 parent 66e247b commit da003c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/lib/hooks/useConnection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ export function useConnection({
241241

242242
const checkProxyHealth = async () => {
243243
try {
244-
const proxyBaseUrl = getMCPProxyAddress(config).replace(/\/+$/, '');
244+
const proxyBaseUrl = getMCPProxyAddress(config).replace(/\/+$/, "");
245245
const proxyHealthUrl = new URL(`${proxyBaseUrl}/health`);
246246

247247
const proxyHealthResponse = await fetch(proxyHealthUrl);

0 commit comments

Comments
 (0)