From 6d49011114c67519e4430e29f1242b473c746cf0 Mon Sep 17 00:00:00 2001 From: germondai Date: Sun, 26 Jul 2026 15:12:09 +0200 Subject: [PATCH] refactor(web): simplify GitHub stars fallback --- apps/web/app/composables/useGithubStars.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/app/composables/useGithubStars.ts b/apps/web/app/composables/useGithubStars.ts index 893ffa6..2ef72de 100644 --- a/apps/web/app/composables/useGithubStars.ts +++ b/apps/web/app/composables/useGithubStars.ts @@ -12,7 +12,7 @@ export function useGithubStars() { if (typeof n !== "number") return stars.value = n >= 1000 ? `${(n / 1000).toFixed(1)}k` : String(n) } catch { - // stays null — GitHub link still renders without the count + // The GitHub link still renders without the count. } })