Skip to content

fix: enable autocorrect on mobile chat inputs#160

Merged
PureWeen merged 1 commit intomainfrom
fix/mobile-autocorrect
Feb 21, 2026
Merged

fix: enable autocorrect on mobile chat inputs#160
PureWeen merged 1 commit intomainfrom
fix/mobile-autocorrect

Conversation

@jfversluis
Copy link
Collaborator

Problem

Chat text inputs on iOS (and likely Android) have no autocorrect — the native keyboard autocorrect/autocapitalize/spellcheck are all disabled.

Root Cause

Both ExpandedSessionView.razor and SessionCard.razor had autocorrect="off" autocapitalize="off" spellcheck="false" on the chat input elements.

Fix

Removed those three attributes. Kept autocomplete="off" to prevent browser form autofill suggestions (which is unrelated to keyboard autocorrect).

Files Changed

  • PolyPilot/Components/ExpandedSessionView.razor — main chat textarea
  • PolyPilot/Components/SessionCard.razor — dashboard card input

Remove autocorrect='off', autocapitalize='off', and spellcheck='false'
from chat textarea/input elements. These attributes disable the native
keyboard autocorrect on iOS and Android. Keep autocomplete='off' to
prevent browser form autofill suggestions.

Fixes both ExpandedSessionView (main chat) and SessionCard (dashboard).

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
@PureWeen PureWeen merged commit 84c104b into main Feb 21, 2026
6 checks passed
@PureWeen PureWeen deleted the fix/mobile-autocorrect branch February 22, 2026 00:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants