diff --git a/src/app/(home)/players/[id]/user.tsx b/src/app/(home)/players/[id]/user.tsx index fd3e9e3..adc591c 100644 --- a/src/app/(home)/players/[id]/user.tsx +++ b/src/app/(home)/players/[id]/user.tsx @@ -334,6 +334,19 @@ function UserInfoComponent() { const hasLegacy = isNonNullish(legacyUserRank?.mmr) && !Number.isNaN(legacyUserRank?.mmr) + const activeQueueCount = [ + hasRanked, + hasVanilla, + hasLegacy, + hasSmallworld, + ].filter(Boolean).length + const lgGridCols: Record = { + 1: 'lg:grid-cols-1', + 2: 'lg:grid-cols-2', + 3: 'lg:grid-cols-3', + 4: 'lg:grid-cols-4', + } + return (
@@ -450,7 +463,12 @@ function UserInfoComponent() {
{/* ── Queue Rating Cards ── */} -
+