From fe69706255612d5a6be2f18768e33c591c97ca1c Mon Sep 17 00:00:00 2001 From: Luc Mcgrady Date: Sun, 13 Jul 2025 19:51:57 +0100 Subject: [PATCH] Update ts/routes/graphs/simulator.ts Co-authored-by: user1823 <92206575+user1823@users.noreply.github.com> --- ts/routes/graphs/simulator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/routes/graphs/simulator.ts b/ts/routes/graphs/simulator.ts index 621895f3a..5c79d64e4 100644 --- a/ts/routes/graphs/simulator.ts +++ b/ts/routes/graphs/simulator.ts @@ -67,7 +67,7 @@ export function renderWorkloadChart( }; const formatY: (value: number) => string = ({ - [SimulateWorkloadSubgraph.ratio]: (value: number) => `${timeSpan(value)} per 1 card memorized`, + [SimulateWorkloadSubgraph.ratio]: (value: number) => `${timeSpan(value)} per memorized card`, [SimulateWorkloadSubgraph.time]: timeSpan, [SimulateWorkloadSubgraph.memorized]: (value: number) => tr.statisticsMemorized({ memorized: Math.round(value).toFixed(0) }),