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) <noreply@anthropic.com>
This commit is contained in:
2026-05-11 15:52:33 +03:00
parent 283b2126c0
commit dd1de38b2f

View File

@@ -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({