diff --git a/src/components/Forms/PaymentForm/PayTo/SetAmount/index.tsx b/src/components/Forms/PaymentForm/PayTo/SetAmount/index.tsx index 7a17aaec99..b44da53205 100644 --- a/src/components/Forms/PaymentForm/PayTo/SetAmount/index.tsx +++ b/src/components/Forms/PaymentForm/PayTo/SetAmount/index.tsx @@ -141,7 +141,8 @@ const SetAmount: React.FC = ({ const balance = isUSDT ? balanceUSDT : isHKD ? balanceHKD : balanceLike const maxAmount = isHKD ? PAYMENT_MAXIMUM_PAYTO_AMOUNT.HKD : Infinity const networkEerror = - error || allowanceError || balanceUSDTError || approveError + error || + (isUSDT ? allowanceError || balanceUSDTError || approveError : undefined) ? WALLET_ERROR_MESSAGES[lang].unknown : ''