fix(ui,sdk-bridge): 'codex --login' -> 'codex login' in loginCommand prompts#329
Merged
chadbyte merged 1 commit intochadbyte:mainfrom Apr 22, 2026
Merged
Conversation
…prompts
Codex CLI uses a subcommand ('codex login'), not a flag. The UI
prompt in sdk-bridge.js (line 924) and the fallback prompt in
app-rendering.js (line 499) suggested the invalid 'codex --login'.
Following a bad suggestion leaves users stuck in the auth-required
loop.
This PR is scoped to the login-command typo only. The Darwin
hard-coded binary path issue (also in chadbyte#327) is a separate, larger
refactor and left for a follow-up.
Refs chadbyte#327
Contributor
|
This issue has been resolved in version 2.32.1-beta.1 (main). To update, run: -- Clay Deploy Bot Build anything, with anyone, in one place. |
This was referenced Apr 22, 2026
Contributor
|
This issue has been resolved in version 2.33.0 (stable). To update, run: -- Clay Deploy Bot Build anything, with anyone, in one place. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Per #327, Codex CLI uses a subcommand (`codex login`), not a flag (`codex --login`). Two sites suggested the invalid flag form:
Users who followed the suggestion got 'unknown argument --login' and stayed stuck in the auth-required loop.
This PR is scoped to the login-command typo. The larger Darwin-only hardcoded binary path issue in the same issue is a separate refactor and left for a follow-up.
Refs #327
Testing
Two one-word replacements in two JS files; verified no `codex --login` references remain.