From dd1de38b2fd8c4523ba6315d36acc9dd263d2f5a Mon Sep 17 00:00:00 2001 From: rob thijssen Date: Mon, 11 May 2026 15:52:33 +0300 Subject: [PATCH] feat(ui): show more languages in top languages chart Increase from 10 to 14 rows so languages visible in the contribution graph (e.g. Svelte, C++) also appear in the legend. Co-Authored-By: Claude Opus 4.6 (1M context) --- ui/src/components/TopLanguages.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/TopLanguages.tsx b/ui/src/components/TopLanguages.tsx index 51ec148..b6f9b23 100644 --- a/ui/src/components/TopLanguages.tsx +++ b/ui/src/components/TopLanguages.tsx @@ -3,7 +3,7 @@ import { useQuery } from '@tanstack/react-query'; import { fetchRepoLanguages } from '../api/client'; -const MAX_LANGS = 10; +const MAX_LANGS = 14; export function TopLanguages() { const langsQ = useQuery({