From 5b4b4fc9ed5a81526fcd59ca66d59f0bd331144c Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 15 Jan 2026 15:10:13 +0000 Subject: [PATCH] Reduce padding and sizing in COUNT single result view --- src/components/CountViewer.tsx | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/src/components/CountViewer.tsx b/src/components/CountViewer.tsx index 42a028d..4a98dd9 100644 --- a/src/components/CountViewer.tsx +++ b/src/components/CountViewer.tsx @@ -244,34 +244,36 @@ function RelayResultRow({ result }: { result: RelayCountResult }) { function SingleRelayResult({ result }: { result: RelayCountResult }) { if (result.status === "loading") { return ( -
- -

Counting events...

+
+ +

Counting events...

); } if (result.status === "unsupported") { return ( -
- -

{result.error}

+
+ +

+ {result.error} +

); } if (result.status === "error") { return ( -
- -

{result.error}

+
+ +

{result.error}

); } return ( -
- +
+ {result.count?.toLocaleString()}