From e2e7e211d5205718eb88872f06a7d86cee29ebb5 Mon Sep 17 00:00:00 2001 From: Alexej Wolff Date: Wed, 11 Feb 2026 16:24:22 +0100 Subject: [PATCH] fix: disable autocorrect/autocomplete on chat textarea --- src/pages/GamePage.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/pages/GamePage.tsx b/src/pages/GamePage.tsx index 6a5e330..604300c 100644 --- a/src/pages/GamePage.tsx +++ b/src/pages/GamePage.tsx @@ -602,6 +602,11 @@ export default function GamePage() { placeholder="Что ты хочешь сделать?..." disabled={isLoading} rows={1} + autoComplete="off" + autoCorrect="off" + autoCapitalize="off" + spellCheck={false} + enterKeyHint="send" /> {isLoading ? (