We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f641aa0 commit 24e1aaeCopy full SHA for 24e1aae
cli/src/transport.ts
@@ -16,9 +16,6 @@ export type TransportOptions = {
16
function createSSETransport(options: TransportOptions): Transport {
17
const baseUrl = new URL(options.url ?? "");
18
const sseUrl = new URL("/sse", baseUrl);
19
- if (baseUrl.port) {
20
- sseUrl.port = baseUrl.port;
21
- }
22
23
return new SSEClientTransport(sseUrl);
24
}
0 commit comments