fix(app): disable 3 safari prompt-input annoyances (#12558)
parent
6bdd3528ac
commit
fb331f6cb8
|
|
@ -990,6 +990,9 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
|
|||
aria-multiline="true"
|
||||
aria-label={placeholder()}
|
||||
contenteditable="true"
|
||||
autocapitalize="off"
|
||||
autocorrect="off"
|
||||
spellcheck={false}
|
||||
onInput={handleInput}
|
||||
onPaste={handlePaste}
|
||||
onCompositionStart={() => setComposing(true)}
|
||||
|
|
|
|||
Loading…
Reference in New Issue