Fix unresolved "You sent ${amount} LBC"
## Fixes:
[lbry-desktop] #-4429: Unresolved string: "You sent ${amount} LBC"
## Changes:
Corrected error in commit c9492522
.
This commit is contained in:
parent
e4c05cebe9
commit
fc217d58d7
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ export function doSendDraftTransaction(address, amount) {
|
|||
});
|
||||
dispatch(
|
||||
doToast({
|
||||
message: __('You sent ${amount} LBC'),
|
||||
message: __(`You sent ${amount} LBC`),
|
||||
linkText: __('History'),
|
||||
linkTarget: '/wallet',
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue