You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(settings): require non-empty text inputs, stop the token field closing on empty Enter, and clarify the credentials error
TextInputModal now gates OK on a non-empty (trimmed) value via bOKDisabled
and only runs the confirm/close on Enter when the value is non-empty, so an
empty or whitespace-only field can no longer be confirmed with R2/Enter on
the Deck.
The ConnectModal token field is wrapped in a Focusable (the structure proven
not to close the modal on an incomplete field) and all three keydown handlers
consume Enter with preventDefault/stopPropagation before deciding to submit,
advance, or no-op, so R2/OSK-Enter on the empty token field no longer closes
the modal.
The credentials 403 message now names both possible causes — wrong
username/password and an account without token-creation permission — because
RomM returns 403 indistinguishably for both.
0 commit comments