Merge branch 'feat/about-dialog-overhaul' of https://github.com/TriliumNext/Trilium into feat/about-dialog-overhaul

This commit is contained in:
Adorian Doran
2026-03-23 10:36:36 +02:00

View File

@@ -41,7 +41,7 @@ async function fetchContributors() {
}
}
function processContributorList(contributorInfo: any[]) {
function processContributorList(contributorInfo: GithubContributor[]) {
return contributorInfo
// Filter out bots
.filter((c) => c.type === "User" && !BOTS.includes(c.login))