Skip to content

Commit

Permalink
Fix footer GitHub api for contributors
Browse files Browse the repository at this point in the history
  • Loading branch information
Jadit19 authored Jun 6, 2024
1 parent beff296 commit 154335e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _includes/footer_custom.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
fetch(url)
.then(response => response.json())
.then(data => {
const names = data.map(commit => commit.committer.login)
const names = data.map(commit => commit.commit.committer.name)
const uniqueNames = [...new Set(names)]
const links = uniqueNames.map(
name =>
Expand Down

0 comments on commit 154335e

Please sign in to comment.