Forgit to add file to last commit

This commit is contained in:
Christoph Kluge 2022-10-07 13:39:31 +02:00
parent 87c80af5af
commit 64ea4d63c8

View File

@ -127,7 +127,7 @@ export function formatNumber(x) {
suffix = 'k'
}
return `${(Math.round(x * 100) / 100)}${suffix}`
return `${(Math.round(x * 100) / 100)} ${suffix}`
}
// Use https://developer.mozilla.org/en-US/docs/Web/API/structuredClone instead?