Skip to content

Commit 1df5ad4

Browse files
authored
app: try to hide autofill popups in prompt input (#20197)
1 parent 506dd75 commit 1df5ad4

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
@@ -1344,6 +1344,9 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
13441344
autocapitalize={store.mode === "normal" ? "sentences" : "off"}
13451345
autocorrect={store.mode === "normal" ? "on" : "off"}
13461346
spellcheck={store.mode === "normal"}
1347+
inputMode="text"
1348+
// @ts-expect-error
1349+
autocomplete="off"
13471350
onInput={handleInput}
13481351
onPaste={handlePaste}
13491352
onCompositionStart={handleCompositionStart}

0 commit comments

Comments
 (0)