From 06a3175cd1c471288ad6af60cce75655d89ca5cd Mon Sep 17 00:00:00 2001 From: Kunal Karmakar Date: Sat, 28 Feb 2026 04:10:39 +0000 Subject: [PATCH] Fix linting issue --- src/commands/onboard-custom.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }