From 17cf4133e1ca3fde1804d8ee0941c95f0f3145d8 Mon Sep 17 00:00:00 2001 From: Ben Halpern Date: Sun, 5 May 2019 20:18:32 -0400 Subject: [PATCH] Change number of reactions queried (#2701) --- app/javascript/readingList/readingList.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/readingList/readingList.jsx b/app/javascript/readingList/readingList.jsx index 1a98b97fd..3caf3a91c 100644 --- a/app/javascript/readingList/readingList.jsx +++ b/app/javascript/readingList/readingList.jsx @@ -20,7 +20,7 @@ export class ReadingList extends Component { const client = algoliasearch(algoliaId, algoliaKey); const index = client.initIndex(`SecuredReactions_${env}`); const t = this; - index.search('', {hitsPerPage: 256, filters: `status:${t.state.statusView}`}).then(content => { + index.search('', {hitsPerPage: 64, filters: `status:${t.state.statusView}`}).then(content => { t.setState({readingListItems: content.hits, index, itemsLoaded: true}); }); const waitingOnUser = setInterval(function(){