Skip to content

Commit

Permalink
Minor number formatting tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
bpierre committed Jan 22, 2025
1 parent 08eabae commit 8b487c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/app/src/screens/StakeScreen/PanelStaking.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export function PanelStaking() {
drawer={insufficientBalance
? {
mode: "error",
message: `Insufficient balance. You have ${fmtnum(lqtyBalance.data ?? 0)} LQTY.`,
message: `Insufficient balance. You have ${fmtnum(lqtyBalance.data ?? 0, 2)} LQTY.`,
}
: withdrawOutOfRange
? {
Expand Down

0 comments on commit 8b487c2

Please sign in to comment.