mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-06 08:16:03 +00:00
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:
parent
e9c7abb0c8
commit
86ad8e4521
1 changed files with 4 additions and 1 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue