chore: reduce decimal places by 1

This commit is contained in:
pskfyi 2022-01-13 19:29:46 -08:00 committed by pskfyi
parent 490b99503c
commit cfa418bee3
1 changed files with 1 additions and 1 deletions

View File

@ -567,7 +567,7 @@ export const getters = {
0
),
suffixedDecimalText: (state) => (n) => {
const DIGITS_AFTER_DP = 3
const DIGITS_AFTER_DP = 2
const suffixValues = { Z: 0, k: 1e3, M: 1e6, B: 1e9, T: 1e12, X: 1e15 }
n = new Decimal(n)