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 <noreply@anthropic.com>
This commit is contained in:
claude[bot] 2026-06-16 20:46:36 +00:00
parent e9c7abb0c8
commit 86ad8e4521

View file

@ -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")