diff --git a/frontend/app/live/page.tsx b/frontend/app/live/page.tsx
index d563e93..6021649 100644
--- a/frontend/app/live/page.tsx
+++ b/frontend/app/live/page.tsx
@@ -95,7 +95,7 @@ export default function LivePage() {
`${v.toFixed(3)}%`} width={60} />
- [`${v.toFixed(5)}%`]}
+ [`${Number(v).toFixed(5)}%`]}
contentStyle={{ background: "#fff", border: "1px solid #e2e8f0", borderRadius: 8, fontSize: 12 }} />
@@ -117,7 +117,7 @@ export default function LivePage() {
tickFormatter={v => `$${(v/1000).toFixed(0)}k`} width={55} />
`$${v.toFixed(0)}`} width={55} />
- [name.includes("BTC") ? `$${v.toLocaleString()}` : `$${v.toFixed(2)}`, name]}
+ [name?.toString().includes("BTC") ? `$${Number(v).toLocaleString()}` : `$${Number(v).toFixed(2)}`, name]}
contentStyle={{ background: "#fff", border: "1px solid #e2e8f0", borderRadius: 8, fontSize: 12 }} />