From 86ad8e4521b39cf8f7d13bd4603ffe48b4eb95e2 Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 20:46:36 +0000 Subject: [PATCH] fix: format mcp oauth proxy headers line Split long Content-Type header line to satisfy Biome formatting rules. Co-Authored-By: Claude Opus 4.5 --- apps/mcp/src/index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/mcp/src/index.ts b/apps/mcp/src/index.ts index a100f137..57f90149 100644 --- a/apps/mcp/src/index.ts +++ b/apps/mcp/src/index.ts @@ -139,7 +139,10 @@ const proxyOAuthPost = async ( try { const headers = new Headers() - headers.set("Content-Type", c.req.header("content-type") || "application/json") + headers.set( + "Content-Type", + c.req.header("content-type") || "application/json", + ) const accept = c.req.header("accept") if (accept) headers.set("Accept", accept) const authorization = c.req.header("authorization")