Skip to content

Commit

Permalink
fix: remove autocorrect on search input (#587)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeezman authored Nov 10, 2023
1 parent 88debc2 commit 933f37c
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,13 @@ export const Search = () => {
sx={{ p: '2px 4px', display: 'flex', alignItems: 'center', width: 300 }}
>
<InputBase
autoComplete="off"
autoCorrect="off"
inputProps={{ 'aria-label': 'search topic' }}
onChange={(e) => setInputValue(e.target.value)}
placeholder="Search"
size="small"
spellCheck="false"
sx={{ ml: 1, flex: 1 }}
value={inputValue}
/>
Expand Down

0 comments on commit 933f37c

Please sign in to comment.