diff options
| author | Aiden Cline <[email protected]> | 2026-02-05 16:31:52 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-02-05 16:31:52 -0600 |
| commit | 36637b3be09e2244433f2ee95d94d900f8491ad3 (patch) | |
| tree | 6392de462158b580b6343059f28bddf4aadb657e | |
| parent | a45841396fa1f804bc9e1f2e8d3db657f4fffe55 (diff) | |
| download | opencode-36637b3be09e2244433f2ee95d94d900f8491ad3.tar.gz opencode-36637b3be09e2244433f2ee95d94d900f8491ad3.zip | |
chore: rm hardcoded conditional that was used for testing (#12371)
| -rw-r--r-- | packages/opencode/src/plugin/codex.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/opencode/src/plugin/codex.ts b/packages/opencode/src/plugin/codex.ts index fe9f7d1ab..c8b833bae 100644 --- a/packages/opencode/src/plugin/codex.ts +++ b/packages/opencode/src/plugin/codex.ts @@ -371,7 +371,7 @@ export async function CodexAuthPlugin(input: PluginInput): Promise<Hooks> { } } - if (!provider.models["gpt-5.3-codex"] || true) { + if (!provider.models["gpt-5.3-codex"]) { const model = { id: "gpt-5.3-codex", providerID: "openai", |
