kacharts : param inutilisé retiré (variante lint-clean du kit)
1 changed file +1 −1
modified
frontend/src/ka/stats/kacharts.tsx
+1 −1
@@ -278,7 +278,7 @@ export function MultiLineChart({ ms, height = 260 }: { ms: MultiSerie; height?: | ||
| 278 | 278 | {hi !== null && ( |
| 279 | 279 | <p className="chip" style={{ marginTop: 8, display: "inline-flex", gap: 12, flexWrap: "wrap" }}> |
| 280 | 280 | <b>{ref[hi]?.t}</b> |
| 281 | − {shown.map((s, i) => ( | |
| 281 | + {shown.map((s) => ( | |
| 282 | 282 | <span key={s.label}>{s.label} : <b>{s.points[hi] ? fmtNum(s.points[hi].v) : "—"}{ms.unit ? ` ${ms.unit}` : ""}</b></span> |
| 283 | 283 | ))} |
| 284 | 284 | </p> |
| 285 | 285 | |