From 7e042baa3a1c1a83c4b15189a798c1db5c03a711 Mon Sep 17 00:00:00 2001 From: Luc Mcgrady Date: Sun, 13 Jul 2025 16:54:19 +0100 Subject: [PATCH] remove "time" --- 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 7ef2a3e86..621895f3a 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)} time per 1 card memorized`, + [SimulateWorkloadSubgraph.ratio]: (value: number) => `${timeSpan(value)} per 1 card memorized`, [SimulateWorkloadSubgraph.time]: timeSpan, [SimulateWorkloadSubgraph.memorized]: (value: number) => tr.statisticsMemorized({ memorized: Math.round(value).toFixed(0) }),