Fix double translation
No need for the macro when `<I18nMessage>` is used.
This commit is contained in:
parent
e21db9d58e
commit
aa5e4d6c13
1 changed files with 2 additions and 2 deletions
|
@ -13,9 +13,9 @@ function WalletSpendableBalanceHelp(props: Props) {
|
||||||
);
|
);
|
||||||
|
|
||||||
return !balance ? null : inline ? (
|
return !balance ? null : inline ? (
|
||||||
<span className="help--spendable">{getMessage(__('%balance% available.'))}</span>
|
<span className="help--spendable">{getMessage('%balance% available.')}</span>
|
||||||
) : (
|
) : (
|
||||||
<div className="help">{getMessage(__('Your immediately spendable balance is %balance%.'))}</div>
|
<div className="help">{getMessage('Your immediately spendable balance is %balance%.')}</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue