From a96bd2c49f011173790b43ba09662e948302a696 Mon Sep 17 00:00:00 2001 From: oppiliappan Date: Wed, 15 Jul 2026 12:05:50 +0100 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 changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/lib/components/profile/ProfileTabs.svelte b/web/src/lib/components/profile/ProfileTabs.svelte index cd3bbbd6..9f43d4ee 100644 --- 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) => -- 2.51.2