Skip to content

Commit

Permalink
feat: disable autocomplete for search input
Browse files Browse the repository at this point in the history
  • Loading branch information
fspoettel committed Jan 14, 2025
1 parent 414c309 commit c3909d1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/components/ui/search-input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ export const SearchInput = forwardRef<HTMLInputElement, Props>(
</label>
<input
{...rest}
autoComplete="off"
autoCorrect="off"
autoCapitalize="off"
className={cx(css["input"], inputClassName)}
id={id}
onChange={onChange}
Expand Down

0 comments on commit c3909d1

Please sign in to comment.