Skip to content

Commit 65068de

Browse files
authored
fix: exclude bot PRs from recent PRs (#71)
1 parent 9e96b18 commit 65068de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/data.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ const getRecentPRs = pMemoize(
120120
});
121121
return data
122122
.filter((pr) => {
123-
return !pr.user.type !== 'Bot' && pr.merged_at;
123+
return pr.user.type !== 'Bot' && pr.merged_at;
124124
})
125125
.slice(0, 10);
126126
} catch {

0 commit comments

Comments
 (0)