Merge pull request #23 from songquanpeng/main

Fork Sync: Update from parent repository
This commit is contained in:
quzard
2023-06-12 09:45:48 +08:00
committed by GitHub
3 changed files with 3 additions and 1 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 / 10000).toFixed(2)}</span>
}
return <span>${balance.toFixed(2)}</span>
}