From cd7b81895eab0da24c161562d792df6fc15912af Mon Sep 17 00:00:00 2001 From: oppiliappan Date: Wed, 15 Jul 2026 11:05:50 +0000 Subject: [PATCH] web: don't show vouch counts in profile tab Signed-off-by: oppiliappan --- web/src/lib/components/profile/ProfileTabs.svelte | 2 +- 1 file(s) changed, 1 insertion(s)(+), 1 deletion(s)(-) diff --git a/web/src/lib/components/profile/ProfileTabs.svelte b/web/src/lib/components/profile/ProfileTabs.svelte --- a/web/src/lib/components/profile/ProfileTabs.svelte +++ b/web/src/lib/components/profile/ProfileTabs.svelte @@ -29,7 +29,7 @@ { id: "repos", label: "Repositories", icon: BookMarked, count: counts.repos }, { id: "starred", label: "Starred", icon: Star, count: counts.stars }, { id: "strings", label: "Strings", icon: LineSquiggle, count: counts.strings }, - { id: "vouches", label: "Vouches", icon: Shield, count: counts.vouches } + { id: "vouches", label: "Vouches", icon: Shield } ]); const hrefFor = (id: string) => -- tangled.sh