summaryrefslogtreecommitdiff
path: root/packages/demobank-ui/src/pages/WalletWithdrawForm.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-09-19 08:31:08 -0300
committerSebastian <sebasjm@gmail.com>2023-09-25 14:50:38 -0300
commita5406c5a5dc437e036168eb068db11d88e05bb0f (patch)
tree74ad5e0d858a5afb3e76ac0c692fdba866fed38f /packages/demobank-ui/src/pages/WalletWithdrawForm.tsx
parente628ca1af851259e609a16d0b53b8d7abfc33716 (diff)
downloadwallet-core-a5406c5a5dc437e036168eb068db11d88e05bb0f.tar.gz
wallet-core-a5406c5a5dc437e036168eb068db11d88e05bb0f.tar.bz2
wallet-core-a5406c5a5dc437e036168eb068db11d88e05bb0f.zip
some ui
Diffstat (limited to 'packages/demobank-ui/src/pages/WalletWithdrawForm.tsx')
-rw-r--r--packages/demobank-ui/src/pages/WalletWithdrawForm.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/demobank-ui/src/pages/WalletWithdrawForm.tsx b/packages/demobank-ui/src/pages/WalletWithdrawForm.tsx
index 83be99d6f..da624f61b 100644
--- a/packages/demobank-ui/src/pages/WalletWithdrawForm.tsx
+++ b/packages/demobank-ui/src/pages/WalletWithdrawForm.tsx
@@ -65,10 +65,10 @@ export function WalletWithdrawForm({
trimmedAmountStr == null
? i18n.str`required`
: !parsedAmount
- ? i18n.str`invalid`
- : Amounts.cmp(limit, parsedAmount) === -1
- ? i18n.str`balance is not enough`
- : undefined,
+ ? i18n.str`invalid`
+ : Amounts.cmp(limit, parsedAmount) === -1
+ ? i18n.str`balance is not enough`
+ : undefined,
});
return (