mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 11:42:05 +00:00
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:
commit
90e9087054
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ const HorizontalNavBar = React.memo(({ className, route, query, title, backButto
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
searchBar ?
|
searchBar && route !== 'addons' ?
|
||||||
<SearchBar className={styles['search-bar']} query={query} active={route === 'search'} />
|
<SearchBar className={styles['search-bar']} query={query} active={route === 'search'} />
|
||||||
:
|
:
|
||||||
null
|
null
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue