diff --git a/src/commands/onboard-custom.ts b/src/commands/onboard-custom.ts index 9a047c7513c..2da4d9d8a61 100644 --- a/src/commands/onboard-custom.ts +++ b/src/commands/onboard-custom.ts @@ -214,7 +214,7 @@ function resolveAliasError(params: { function buildOpenAiHeaders(apiKey: string) { const headers: Record = {}; if (apiKey) { - headers["api-key"] = `${apiKey}`; + headers["api-key"] = apiKey; } return headers; }