Render the license re-login prompt choices vertically - #458
Merged
Conversation
tiurin
marked this pull request as ready for review
August 13, 2026 14:55
tiurin
enabled auto-merge (squash)
August 13, 2026 16:21
tiurin
disabled auto-merge
August 13, 2026 16:23
Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Claude <noreply@anthropic.com>
tiurin
force-pushed
the
devx-1045-render-relogin-prompt-vertically
branch
from
August 13, 2026 16:37
f343d30 to
1a4c1de
Compare
Co-Authored-By: Claude <noreply@anthropic.com>
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.
Motivation
#449 gave the license re-login prompt a second, advertised option (
ESC to exit), but left it on the horizontal rendering path. Both labels are flattened into one dimmed hint and appended to a question that already wraps, so the choices read as prose glued to the end of a sentence — and the sentence's own tail (Log) dangles at the wrap point. #457 fixed exactly this for the slow-start recovery prompt; this applies the same treatment to the re-login prompt.Before / After
Before:
After:
[ENTER to log in again/ESC to exit]● [ENTER] Log in again/○ [ESC] ExitLogleft danglingDocs
Nothing to document. This changes the layout and wording of one interactive prompt; no command, flag, env var, or documented behavior changes. The decline key advertised in #449 still works the same way, and the manual recovery steps a decline prints are unchanged.
Closes DEVX-1045