Skip to content

Commit

Permalink
Remove extra parantheses
Browse files Browse the repository at this point in the history
  • Loading branch information
nmanu1 committed Nov 24, 2021
1 parent f07ac40 commit 4d25920
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sample-app/src/components/SearchBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ export default function SearchBar({
<DropdownSection
options={options}
optionIdPrefix={'Autocomplete__option-0'}
onFocusChange={(value) => {
onFocusChange={value => {
answersActions.setQuery(value);
}}
onClickOption={(option) => {
onClickOption={option => {
answersActions.setQuery(option.value);
executeQuery();
}}
Expand Down

0 comments on commit 4d25920

Please sign in to comment.