From 17456ad54a55d3270d486c42dbf93e8eab097e5c Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Fri, 11 Oct 2024 08:52:22 -0700 Subject: [PATCH] remove unused code --- server/src/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/server/src/index.ts b/server/src/index.ts index ba4a4f4..55061a6 100644 --- a/server/src/index.ts +++ b/server/src/index.ts @@ -44,8 +44,6 @@ const createTransport = async (query: express.Request["query"]) => { app.get("/sse", async (req, res) => { console.log("New SSE connection"); - const transportType = req.query.transportType as string; - console.log(`Transport type: ${transportType}`); const backingServerTransport = await createTransport(req.query);