Merge remote-tracking branch 'origin/main'

This commit is contained in:
quzard
2023-06-13 18:58:42 +08:00
6 changed files with 21 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ function renderType(type) {
function renderBalance(type, balance) {
if (type === 5) {
return <span>{balance.toFixed(2)}</span>
return <span>{balance.toFixed(5)}</span>
}
return <span>${balance.toFixed(2)}</span>
}