v0.9.84 bug fixes

This commit is contained in:
2026-03-18 20:11:34 -04:00
parent a069407fbb
commit 71575f278e
11 changed files with 31 additions and 25 deletions

View File

@@ -102,6 +102,7 @@ export default function NewChatModal({ onClose, onCreated }) {
value={name}
onChange={e => setName(e.target.value)}
placeholder={namePlaceholder}
autoComplete="new-password" autoCorrect="off" autoCapitalize="words" spellCheck={false}
/>
</div>
)}
@@ -121,7 +122,7 @@ export default function NewChatModal({ onClose, onCreated }) {
<label className="text-sm font-medium" style={{ color: 'var(--text-secondary)' }}>
{isDirect ? 'Direct Message with' : 'Add Members'}
</label>
<input className="input" placeholder="Search users..." value={search} onChange={e => setSearch(e.target.value)} />
<input className="input" placeholder="Search users..." autoComplete="new-password" autoCorrect="off" autoCapitalize="off" spellCheck={false} value={search} onChange={e => setSearch(e.target.value)} />
</div>
{selected.length > 0 && (