Fix string (#257)
This commit is contained in:
parent
ef1ebfc491
commit
a7c7881795
1 changed files with 3 additions and 3 deletions
|
@ -185,9 +185,9 @@ function WalletTipAmountSelector(props: Props) {
|
||||||
|
|
||||||
if (validCustomTipInput) {
|
if (validCustomTipInput) {
|
||||||
setTipError(
|
setTipError(
|
||||||
__('Amount of $%input_amount% LBC in USB is lower than price of $%price_amount%', {
|
__('Insufficient amount (%input_amount% Credits = %converted_amount% USD).', {
|
||||||
input_amount: convertToTwoDecimalsOrMore(convertedAmount, 4),
|
input_amount: amount,
|
||||||
price_amount: convertToTwoDecimalsOrMore(customTipAmount),
|
converted_amount: convertToTwoDecimalsOrMore(convertedAmount, 4),
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue