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 0838ffd commit 7bf363cCopy full SHA for 7bf363c
cli/src/transport.ts
@@ -15,7 +15,6 @@ export type TransportOptions = {
15
16
function createSSETransport(options: TransportOptions): Transport {
17
const baseUrl = new URL(options.url ?? "");
18
- // Create new URL while preserving the port from baseUrl
19
const sseUrl = new URL("/sse", baseUrl);
20
if (baseUrl.port) {
21
sseUrl.port = baseUrl.port;
0 commit comments