Skip to content

Commit 47dd7ca

Browse files
author
Darek Frynas
committed
Change contentful limit from 100 to 1000
1 parent d8f1090 commit 47dd7ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/App/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class App extends PureComponent {
2424
accessToken: constants.ACCESS_TOKEN
2525
});
2626

27-
client.getEntries()
27+
client.getEntries( { limit: 1000 })
2828
.then((response) => {
2929
this.setState({content: response.items});
3030
})

0 commit comments

Comments
 (0)