Skip to content

Commit fb331f6

Browse files
authored
fix(app): disable 3 safari prompt-input annoyances (#12558)
1 parent 6bdd352 commit fb331f6

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

packages/app/src/components/prompt-input.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -990,6 +990,9 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
990990
aria-multiline="true"
991991
aria-label={placeholder()}
992992
contenteditable="true"
993+
autocapitalize="off"
994+
autocorrect="off"
995+
spellcheck={false}
993996
onInput={handleInput}
994997
onPaste={handlePaste}
995998
onCompositionStart={() => setComposing(true)}

0 commit comments

Comments
 (0)