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()}