diff --git a/src/ui/component/walletSend/view.jsx b/src/ui/component/walletSend/view.jsx index e98f71eda..199b57370 100644 --- a/src/ui/component/walletSend/view.jsx +++ b/src/ui/component/walletSend/view.jsx @@ -92,12 +92,12 @@ class WalletSend extends React.PureComponent { parseFloat(values.amount) === balance } /> - {!!Object.keys(errors).length && ( + {!!Object.keys(errors).length || ( {(!!values.address && touched.address && errors.address) || (!!values.amount && touched.amount && errors.amount) || - (values.amount === balance && __('Decrease amount to account for transaction fee')) || - (values.amount > balance && __('Not enough credits'))} + (parseFloat(values.amount) === balance && __('Decrease amount to account for transaction fee')) || + (parseFloat(values.amount) > balance && __('Not enough credits'))} )}