feat: disable spell check and autocomplete for input, number input, and textarea components

This commit is contained in:
Bohdan Triapitsyn
2026-01-09 11:13:52 +02:00
parent 2382c6e82a
commit 6fdeb833b2
4 changed files with 13 additions and 1 deletions
@@ -605,7 +605,7 @@ export const ChatInput: React.FC<ChatInputProps> = ({ onOpenSettings, scrollToBo
}
}
if (e.key === 'Tab' && e.shiftKey && !showCommandAutocomplete && !showAgentAutocomplete && !showFileMention) {
if (e.key === 'Tab' && !showCommandAutocomplete && !showAgentAutocomplete && !showFileMention) {
e.preventDefault();
cycleAgent();
return;