mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
fix: correct satisfies clause in API factory default case
Remove codex-cli-native from the satisfies clause as it has its own explicit case in the switch statement
This commit is contained in:
parent
1e06592b55
commit
7b7d59ab1a
1 changed files with 1 additions and 1 deletions
|
|
@ -176,7 +176,7 @@ export function buildApiHandler(configuration: ProviderSettings): ApiHandler {
|
|||
case "vercel-ai-gateway":
|
||||
return new VercelAiGatewayHandler(options)
|
||||
default:
|
||||
apiProvider satisfies "gemini-cli" | "codex-cli-native" | undefined
|
||||
apiProvider satisfies "gemini-cli" | undefined
|
||||
return new AnthropicHandler(options)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue