From d4eee9afd5f598dcc83d0545fcc42ecea8c1031a Mon Sep 17 00:00:00 2001 From: dame Date: Thu, 2 Jul 2026 17:33:07 -0400 Subject: [PATCH] Shorten 'Repo at a glance' tile labels to save space (#42) 'Account created' -> 'Created' and 'cred.blue score' -> 'Score', which keeps the labels on one line in the tighter 2-column mobile grid. Claude-Session: https://claude.ai/code/session_01LU45TLTTNKUp2bb6EcqGxi Co-authored-by: Claude --- src/components/account/AccountStats.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/account/AccountStats.tsx b/src/components/account/AccountStats.tsx index 19923c9..065cc1f 100644 --- a/src/components/account/AccountStats.tsx +++ b/src/components/account/AccountStats.tsx @@ -217,7 +217,7 @@ export default function AccountStats({ did, handle, interactive = true }: Props) /> } - label="Account created" + label="Created" hint="Earliest PLC operation timestamp" valueLabel={createdLabel || (stats !== null && !createdLabel ? '—' : undefined)} sublabel={createdRelative || undefined} @@ -259,7 +259,7 @@ function CredBlueTile({ ? `${CRED_BLUE_BASE}/${encodeURIComponent(handle.replace(/^@/, ''))}` : undefined; const icon = ; - const label = 'cred.blue score'; + const label = 'Score'; if (state.status === 'loading') { return ; -- 2.51.2