From 742a15a77d88f61f9b35987c2b89215377b8e976 Mon Sep 17 00:00:00 2001 From: nightcityblade Date: Mon, 20 Apr 2026 23:12:28 +0800 Subject: [PATCH] fix: remove fractional digits from top-list scores --- components/top-list.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/top-list.tsx b/components/top-list.tsx index 515d2f3..9211dc1 100644 --- a/components/top-list.tsx +++ b/components/top-list.tsx @@ -39,6 +39,7 @@ export function TopList({ userResults }: Props) { {data.titleUrl ? (

- {(data.score ?? 0).toFixed(2)} + {data.score ?? 0}

{t("comparsion.score")}