Merge pull request #329 from infinite-persistence/4429-unresolved-string
Fix unresolved "You sent ${amount} LBC"
This commit is contained in:
commit
60e41e7c9f
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ export function doSendDraftTransaction(address, amount) {
|
||||||
});
|
});
|
||||||
dispatch(
|
dispatch(
|
||||||
doToast({
|
doToast({
|
||||||
message: __('You sent ${amount} LBC'),
|
message: __(`You sent ${amount} LBC`),
|
||||||
linkText: __('History'),
|
linkText: __('History'),
|
||||||
linkTarget: '/wallet',
|
linkTarget: '/wallet',
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue