Increase collections pagination limit (#561)

* I think this is the pragmatic solution for now. We can readdress later.
Also renamed fetchAll, to the more accurate fetchPage

* 💚
This commit is contained in:
Tom Moor
2018-02-04 12:30:35 -08:00
committed by GitHub
parent f076582ce4
commit 47da3f2b9b
4 changed files with 29 additions and 36 deletions

View File

@@ -44,7 +44,7 @@ const Auth = ({ children }: Props) => {
}
stores.auth.fetch();
authenticatedStores.collections.fetchAll();
authenticatedStores.collections.fetchPage({ limit: 100 });
}
return <Provider {...authenticatedStores}>{children}</Provider>;