From 63d953b1926dd845561341fe4638fa480ae92c90 Mon Sep 17 00:00:00 2001 From: Gabe Farrell Date: Mon, 24 Nov 2025 20:13:55 -0500 Subject: [PATCH] fix: make all-time stats look better --- client/app/components/AllTimeStats.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/client/app/components/AllTimeStats.tsx b/client/app/components/AllTimeStats.tsx index 2f60270..342b954 100644 --- a/client/app/components/AllTimeStats.tsx +++ b/client/app/components/AllTimeStats.tsx @@ -33,23 +33,23 @@ export default function AllTimeStats() {
- {Math.floor(data.minutes_listened / 60)} + {data.minutes_listened} {" "} - Hours Listened + Minutes Listened
{data.listen_count} Plays
- {data.artist_count} Artists + {data.track_count} Tracks
{data.album_count} Albums
- {data.track_count} Tracks + {data.artist_count} Artists
);