diff --git a/components/browseArchives/index.js b/components/browseArchives/index.js index ca2a2b4..1da831e 100644 --- a/components/browseArchives/index.js +++ b/components/browseArchives/index.js @@ -74,6 +74,7 @@ class BrowseArchives extends React.Component { // Using static full interviews data array for now this.setState({ searchResults, + debounceTerm: this.state.term, }); } @@ -96,9 +97,6 @@ class BrowseArchives extends React.Component { getSearchResultsDebounce = _.debounce(() => { const { term } = this.state; this.getSearchResults(term); - this.setState({ - debounceTerm: term, - }); }, 700); clearSearchInput = () => {