Único cambio: la celda de "Eficiencia" ahora muestra ${value.toFixed(2)} ${currency}/min.
Some checks failed
/ Deploy to Cloudflare Pages (push) Has been cancelled

This commit is contained in:
2026-06-23 17:20:30 -03:00
parent bf200b72f9
commit e9073ae732

View File

@@ -243,7 +243,7 @@ export function ComparisonTable({
<MetricCell
value={row.efficiency}
max={maxEfficiency}
format={(v) => v.toFixed(2)}
format={(v) => `${v.toFixed(2)} ${currency}/min`}
/>
</TableRow>
)