Skip to content

Commit df958de

Browse files
committed
fix: add space in Authorization header for Claude Code snippet
'Authorization:Bearer' -> 'Authorization: Bearer' per HTTP spec. Missing space could cause header parsing failures on strict servers. Skipped preview-in-config finding: ConnectionTest already uses session JWT (fixed in prior commit). Config snippets intentionally show masked preview (ci_80ba...e980) as a visual hint -- the '...' masking clearly signals 'replace with your key'.
1 parent bfc549e commit df958de

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/src/pages/APIKeysPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ function ConnectGuide({ activeKeyPreview, sessionToken }: { activeKeyPreview: st
313313
hint: 'Run in terminal',
314314
config: `claude mcp add codeintel \\
315315
--transport http \\
316-
--header "Authorization:Bearer ${keyDisplay}" \\
316+
--header "Authorization: Bearer ${keyDisplay}" \\
317317
https://mcp.opencodeintel.com/mcp`,
318318
},
319319
cursor: {

0 commit comments

Comments
 (0)