From 9830a214765fa0e50c785499a75520e9e85a4cdb Mon Sep 17 00:00:00 2001 From: Liam Date: Thu, 18 Apr 2024 02:35:16 +0100 Subject: [PATCH] mobile support for stats on the landing page --- src/app/components/stats.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/stats.tsx b/src/app/components/stats.tsx index 5763d2d..fc8cb84 100644 --- a/src/app/components/stats.tsx +++ b/src/app/components/stats.tsx @@ -39,7 +39,7 @@ export function Stats(): ReactElement { const metrics = lastMessage !== null ? JSON.parse(lastMessage.data).metrics : undefined; return ( -
+
{stats.map((stat, index) => { const value = metrics ? metrics[stat.id] : "???";