Merge pull request #552 from Stremio/fix-remove-search-bar-from-addons-route

fix: remove search bar from addons route
This commit is contained in:
Tim 2024-01-05 13:57:16 +01:00 committed by GitHub
commit 90e9087054
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,7 +48,7 @@ const HorizontalNavBar = React.memo(({ className, route, query, title, backButto
null
}
{
searchBar ?
searchBar && route !== 'addons' ?
<SearchBar className={styles['search-bar']} query={query} active={route === 'search'} />
:
null