diff --git a/packages/core/src/v1/config/provider-options.ts b/packages/core/src/v1/config/provider-options.ts index 01f813197f..16206aa631 100644 --- a/packages/core/src/v1/config/provider-options.ts +++ b/packages/core/src/v1/config/provider-options.ts @@ -18,7 +18,7 @@ const lowerer: Lowerer = { return { settings: Object.fromEntries(Object.entries(options).filter(([key]) => key !== "headers" && key !== "body")), headers: record(options.headers, (value): value is string => typeof value === "string"), - body: record(options.body, () => true), + body: record(options.body, (_value): _value is unknown => true), } }, model: (options) => ({ ...options }),