From 8c1e8a38a26429e28a2e95e5f00d44d75b5406d4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 1 Jun 2026 16:56:22 +0000 Subject: [PATCH] Fix toThousands rounding to hundreds (one decimal place) --- docs/.vitepress/theme/statistics.data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/.vitepress/theme/statistics.data.ts b/docs/.vitepress/theme/statistics.data.ts index 55c199d..41e7e42 100644 --- a/docs/.vitepress/theme/statistics.data.ts +++ b/docs/.vitepress/theme/statistics.data.ts @@ -77,5 +77,5 @@ export function toMillions(n: number): number { } export function toThousands(n: number): number { - return Math.round(n / 1_000) + return Math.round(n / 100) / 10 }