diff --git a/src/renderer/component/categoryList/view.jsx b/src/renderer/component/categoryList/view.jsx index 8dca1b4f6..f6b5ef148 100644 --- a/src/renderer/component/categoryList/view.jsx +++ b/src/renderer/component/categoryList/view.jsx @@ -225,7 +225,7 @@ class CategoryList extends React.PureComponent { )} diff --git a/src/renderer/page/search/view.jsx b/src/renderer/page/search/view.jsx index c2514a37b..1ebbd8b56 100644 --- a/src/renderer/page/search/view.jsx +++ b/src/renderer/page/search/view.jsx @@ -12,7 +12,6 @@ import * as icons from 'constants/icons'; type Props = { query: ?string, - showUnavailable: boolean, resultCount: number, setClientSetting: (string, number | boolean) => void, }; @@ -35,7 +34,7 @@ class SearchPage extends React.PureComponent { } render() { - const { query, resultCount, showUnavailable } = this.props; + const { query, resultCount } = this.props; return ( @@ -49,13 +48,18 @@ class SearchPage extends React.PureComponent { onChange={this.onSearchResultCountChange} postfix={__('returned results')} /> - + { + // Removing this for now, it currently doesn't do anything but ideally it would + // display content that we don't think is currently available to download + // It is like a "display all" setting + // + } {isURIValid(query) && (