Skip to content

Commit 3cd1c93

Browse files
authored
fix(ui): update default value for GitHub stars count component (#2169)
1 parent 9d6e66c commit 3cd1c93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

www/src/components/navigation/githubIcon.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { getIsRtlFromUrl, getLanguageFromURL } from "../../languages";
33
import { fetchGithub } from "../../utils/fetchGithub";
44
5-
let githubStars = 25000;
5+
let githubStars = 28000;
66
77
try {
88
const fetchedStars = await fetchGithub(
@@ -13,7 +13,7 @@ try {
1313
},
1414
).then((data) => data?.stargazers_count);
1515
16-
githubStars = fetchedStars ?? 25000;
16+
githubStars = fetchedStars ?? 28000;
1717
} catch (e) {
1818
console.error("unable to fetch from github", e);
1919
}

0 commit comments

Comments
 (0)