Skip to content

Commit a8ee0d0

Browse files
committed
feat(web-host): remove autoComplete/Correct/Capitalize to avoid mobile keyboard meesing up with user inputs
1 parent ef748c7 commit a8ee0d0

File tree

1 file changed

+3
-0
lines changed
  • packages/web-host/src/components

1 file changed

+3
-0
lines changed

packages/web-host/src/components/Repl.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,9 @@ export function Repl({
9393
onFocus={() => setInputFocus(true)}
9494
onBlur={() => setInputFocus(false)}
9595
placeholder="Type a command..."
96+
autoComplete="off"
97+
autoCorrect="off"
98+
autoCapitalize="off"
9699
/>
97100
</div>
98101
<button

0 commit comments

Comments
 (0)