Skip to content

Commit

Permalink
remove bot contributors from about page
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixTJDietrich committed Aug 14, 2024
1 parent 6fa3a72 commit 1726a79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/app/about/about.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ export class AboutComponent {
if (!data) {
return undefined;
}
return data.filter((contributor) => contributor.id !== 5898705);
return data.filter((contributor) => contributor.id !== 5898705 || contributor.login.includes('[bot]'));
});
}

0 comments on commit 1726a79

Please sign in to comment.