Commit 93a771bd authored by Chi Kei Chan's avatar Chi Kei Chan

Update warning message

parent 1c83a87f
......@@ -543,7 +543,7 @@ class Send extends Component {
const missingCurrencyValue = !inputValue ? inputLabel : outputLabel;
nextStepMessage = `Enter a ${missingCurrencyValue} value to continue.`;
} else if (inputIsZero || outputIsZero) {
nextStepMessage = 'Amount cannot be zero.';
nextStepMessage = 'No liquidity.';
} else if (this.isUnapproved()) {
nextStepMessage = 'Please unlock token to continue.';
} else if (!recipient) {
......
......@@ -534,7 +534,7 @@ class Swap extends Component {
if (inputIsZero || outputIsZero) {
return (
<div className="swap__summary-wrapper">
<div>Amount cannot be zero.</div>
<div>No liquidity.</div>
</div>
)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment