When I use SearchBox view, when I type in the value inside input field, its blurring out. Each time I want to type I need to select the input box.
It would be very helpful if I get help in solving this issue.
Below is my code snippet
import { SearchBox } from '@elastic/react-search-ui'
<SearchBox
view={({ value, onChange, onSubmit }) => (
<input
type="text"
value={value}
onChange={(e) => onChange(e.target.value)}
/>
)}
/>