diff --git a/frontend/app/history/page.tsx b/frontend/app/history/page.tsx index 63b633f..073835e 100644 --- a/frontend/app/history/page.tsx +++ b/frontend/app/history/page.tsx @@ -51,7 +51,7 @@ export default function HistoryPage() { `${v.toFixed(3)}%`} width={60} /> - `${v.toFixed(4)}%`} contentStyle={{ background: "#1e293b", border: "1px solid #475569", borderRadius: 8 }} /> + typeof v === "number" ? `${v.toFixed(4)}%` : v} contentStyle={{ background: "#1e293b", border: "1px solid #475569", borderRadius: 8 }} />