From 54c3a6066d4efb7e591214cf881a354fec330eec Mon Sep 17 00:00:00 2001 From: kirameku26 Date: Mon, 15 Jun 2026 20:32:38 +0900 Subject: [PATCH] Fix list points to display as integers instead of decimals --- atcoder-problems-frontend/src/pages/ListPage/ListTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atcoder-problems-frontend/src/pages/ListPage/ListTable.tsx b/atcoder-problems-frontend/src/pages/ListPage/ListTable.tsx index e49e6b85..0761ef3a 100644 --- a/atcoder-problems-frontend/src/pages/ListPage/ListTable.tsx +++ b/atcoder-problems-frontend/src/pages/ListPage/ListTable.tsx @@ -356,7 +356,7 @@ export const ListTable: React.FC = (props) => { if (point >= INF_POINT) { return

-

; } else { - if (point % 100 === 0) { + if (point % 1 === 0) { return

{point}

; } else { return

{point.toFixed(2)}

;