Skip to content

Commit

Permalink
fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
tischsoic committed Nov 25, 2024
1 parent 36c28b8 commit 576b96f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { SearchTextContext } from '../../universal.discovery.module';
const ENTER_CHAR_CODE = 13;

const TopMenuSearchInput = ({ isSearchOpened, setIsSearchOpened }) => {
const [searchText, setSearchText, makeSearch] = useContext(SearchTextContext);
const [searchText, , makeSearch] = useContext(SearchTextContext);
const [inputValue, setInputValue] = useState(searchText);
const inputRef = useRef();
const className = createCssClassNames({
Expand Down

0 comments on commit 576b96f

Please sign in to comment.