Skip to content

Commit 5b21d08

Browse files
committed
fix: array order
arrays are newest to oldest
1 parent 3aa6427 commit 5b21d08

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)