remove "time"

This commit is contained in:
Luc Mcgrady 2025-07-13 16:54:19 +01:00
parent 3ebe45aa65
commit 7e042baa3a
No known key found for this signature in database
GPG key ID: 4F3D7A0B17CC3D9C

View file

@ -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) }),