diff --git a/src/components/swapv2/LimitOrder/useValidateInputError.tsx b/src/components/swapv2/LimitOrder/useValidateInputError.tsx index 1e158c458d..3a158ebb26 100644 --- a/src/components/swapv2/LimitOrder/useValidateInputError.tsx +++ b/src/components/swapv2/LimitOrder/useValidateInputError.tsx @@ -53,12 +53,13 @@ const useValidateInputError = ({ return ( - You don't have sufficient {currencyIn?.symbol} balance. After your active orders, you have{' '} + Insufficient {currencyIn?.symbol} balance. +
setInputValue(remainBalance.toExact())}> {!remainBalance.equalTo(JSBI.BigInt(0)) ? '~' : ''} {formatNum} {currencyIn?.symbol} {' '} - left. + remaining after deducting Active and Open orders.
)