Merge pull request #419 from responsively-org/manojVivek-patch-1

Increased page limit in contributors api 📈
This commit is contained in:
José Javier Rodríguez Zas 2020-08-25 19:30:43 +02:00 committed by GitHub
commit d76b5ccc30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,7 +26,7 @@ const populateContributors = () => {
function getContr() {
fetch(
'https://api.github.com/repos/responsively-org/responsively-app/contributors',
'https://api.github.com/repos/responsively-org/responsively-app/contributors?per_page=100',
)
.then((response) => response.text())
.then((text) => JSON.parse(text))