Fix linting issue

This commit is contained in:
Kunal Karmakar
2026-02-28 04:10:39 +00:00
committed by Ayaan Zaidi
parent 955768d132
commit 06a3175cd1

View File

@@ -214,7 +214,7 @@ function resolveAliasError(params: {
function buildOpenAiHeaders(apiKey: string) {
const headers: Record<string, string> = {};
if (apiKey) {
headers["api-key"] = `${apiKey}`;
headers["api-key"] = apiKey;
}
return headers;
}