fix: disable autocorrect/autocomplete on chat textarea
This commit is contained in:
@@ -602,6 +602,11 @@ export default function GamePage() {
|
|||||||
placeholder="Что ты хочешь сделать?..."
|
placeholder="Что ты хочешь сделать?..."
|
||||||
disabled={isLoading}
|
disabled={isLoading}
|
||||||
rows={1}
|
rows={1}
|
||||||
|
autoComplete="off"
|
||||||
|
autoCorrect="off"
|
||||||
|
autoCapitalize="off"
|
||||||
|
spellCheck={false}
|
||||||
|
enterKeyHint="send"
|
||||||
/>
|
/>
|
||||||
{isLoading ? (
|
{isLoading ? (
|
||||||
<button onClick={handleStop} className="send-btn stop-btn">
|
<button onClick={handleStop} className="send-btn stop-btn">
|
||||||
|
|||||||
Reference in New Issue
Block a user