Skip to content

Commit

Permalink
[QA] [Feature] Increase balances to 5-6 decimal places to support sma…
Browse files Browse the repository at this point in the history
…ller balances that appear as 0 (#2618)
  • Loading branch information
danielisaacgeslin authored Sep 17, 2024
1 parent d445d2d commit 4ef54f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wormhole-connect/src/store/transferInput.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const formatBalance = (
decimals,
});
return balanceNum.toLocaleString('en', {
maximumFractionDigits: 4,
maximumFractionDigits: 6,
});
};

Expand Down

0 comments on commit 4ef54f2

Please sign in to comment.