build.sh fix

This commit is contained in:
2026-03-25 13:05:46 -04:00
parent ba91fce44c
commit 92dbcf2780
2 changed files with 3 additions and 1 deletions

View File

@@ -100,7 +100,7 @@ export default function NewChatModal({ onClose, onCreated }) {
<input
className="input"
value={name}
onChange={e => setName(e.target.value)} autoComplete="new-password" placeholder={namePlaceholder}
onChange={e => setName(e.target.value)} placeholder={namePlaceholder}
autoComplete="new-password" autoCorrect="off" autoCapitalize="words" spellCheck={false} />
</div>
)}