diff --git a/src/containers/SearchPage.js b/src/containers/SearchPage.js index 68f440dc..b4c6df1f 100644 --- a/src/containers/SearchPage.js +++ b/src/containers/SearchPage.js @@ -13,7 +13,10 @@ class SearchPage extends React.Component { isFetching: PropTypes.bool, searchEntries: PropTypes.func.isRequired, searchTerm: PropTypes.string.isRequired, + collections: ImmutablePropTypes.seq, entries: ImmutablePropTypes.list, + page: PropTypes.number, + publicFolder: PropTypes.string, }; componentDidMount() { @@ -33,13 +36,19 @@ class SearchPage extends React.Component { }; render() { - const { collections, searchTerm, entries, isFetching, page } = this.props; + const { collections, searchTerm, entries, isFetching, page, publicFolder } = this.props; return (