Skip to content

Commit be1281d

Browse files
authored
Merge pull request #12867 from ethereum/docs-contributors
fix: latest contributor for dev docs
2 parents ed065cb + 5b21d08 commit be1281d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hooks/useClientSideGitHubContributors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export const useClientSideGitHubContributors = (
5353

5454
const authorSet = new Set<string>()
5555

56-
;[...oldCommits, ...newCommits]
56+
;[...newCommits, ...oldCommits]
5757
.filter(({ author }) => author)
5858
.forEach(({ author, commit }) => {
5959
const entry: Author = {

0 commit comments

Comments
 (0)