Change number of reactions queried (#2701)
This commit is contained in:
parent
1f350a048c
commit
17cf4133e1
1 changed files with 1 additions and 1 deletions
|
|
@ -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(){
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue