Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/lib/api/fetch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const useCrateClusterHeader = 'X-use-crate';
const projectNameHeader = 'X-project';
const workspaceNameHeader = 'X-workspace';
const mcpNameHeader = 'X-mcp';
const mcpAuthHeader = 'X-mcp-authorization';
const contextHeader = 'X-context';
const jqHeader = 'X-jq';
const authHeader = 'Authorization';
Expand Down Expand Up @@ -39,7 +38,6 @@ export const fetchApiServer = async (
headers[workspaceNameHeader] = config.mcpConfig.workspaceName;
headers[mcpNameHeader] = config.mcpConfig.controlPlaneName;
headers[contextHeader] = config.mcpConfig.contextName;
headers[mcpAuthHeader] = config.mcpConfig.mcpAuthorization;
} else {
headers[useCrateClusterHeader] = 'true';
}
Expand Down
Loading