diff --git a/src/app/ItemSearchPage.js b/src/app/ItemSearchPage.js index bac5be1..85b32eb 100644 --- a/src/app/ItemSearchPage.js +++ b/src/app/ItemSearchPage.js @@ -104,7 +104,7 @@ function ItemSearchPageResults({ query: latestQuery, offset }) { // When the query is empty, clear the debounced query immediately too! That // will give us fast feedback when the search field clears. - forceReset: searchQueryIsEmpty(latestQuery), + forceReset: () => searchQueryIsEmpty(latestQuery), }); // NOTE: This query should always load ~instantly, from the client cache.