Skip to content

Commit

Permalink
fix: update repo public keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
luisfuturist committed Dec 31, 2024
1 parent 232d999 commit dfc1a53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/composables/useGithubPinnedRepos.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ function fetchPinnedRepos(username, cb) {
let repos = [];

for(let repo of data) {
if(!repo.topics || !repo.topics?.includes("neogaia-public")) {
if(!repo.topics || !repo.topics?.includes("gaia-public")) {
continue;
}

repos.push({
name: repo.name,
description: repo.description,
website: repo.homepage,
keywords: repo.topics.filter(topic => topic != "neogaia-public"),
keywords: repo.topics.filter(topic => topic != "gaia-public"),
account: username,
});
};
Expand Down

0 comments on commit dfc1a53

Please sign in to comment.