Show 8 decimal places in the usage graph tooltip

This commit is contained in:
Matt Aitken
2024-07-05 19:08:16 +01:00
parent 73fe07348f
commit 7a2b250cb2
@@ -190,7 +190,7 @@ export default function ChoosePlanPage() {
}}
formatter={(value, data) => [
`$${
typeof value === "number" ? value.toFixed(2) : value.toLocaleString()
typeof value === "number" ? value.toFixed(8) : value.toLocaleString()
}`,
"",
]}