diff --git a/js/contributors.js b/js/contributors.js index 53746a3..1def644 100644 --- a/js/contributors.js +++ b/js/contributors.js @@ -10,7 +10,7 @@ function getContributors(page) { const contributorList = []; data.forEach((contributor, idx) => { contributorList.push(`${contributor.login}`); - if (idx < data.length - 1) { + if (idx < data.length - 1 || page > 1) { contributorList.push(', '); } });