Skip to content

Commit b48a065

Browse files
committed
fix lint
1 parent f573506 commit b48a065

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/integrations/mcp-server/transport.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export function wrapTransportSend(transport: MCPTransport): void {
8080
fill(transport, 'send', originalSend => {
8181
return async function (this: MCPTransport, ...args: unknown[]) {
8282
const [message] = args;
83-
83+
8484
if (isJsonRpcNotification(message)) {
8585
return createMcpOutgoingNotificationSpan(message, this, () => {
8686
return (originalSend as (...args: unknown[]) => unknown).call(this, ...args);

0 commit comments

Comments
 (0)