Merge pull request #329 from infinite-persistence/4429-unresolved-string

Fix unresolved "You sent ${amount} LBC"
This commit is contained in:
Sean Yesmunt 2020-06-29 14:41:53 -04:00 committed by GitHub
commit 60e41e7c9f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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',
})