diff --git a/dist/bundle.es.js b/dist/bundle.es.js index 57a4b45..abdd5b0 100644 --- a/dist/bundle.es.js +++ b/dist/bundle.es.js @@ -1500,7 +1500,7 @@ function doUserInviteNew(email) { } }); dispatch(lbryRedux.doToast({ - message: __('Invite sent to %s', email) + message: __(`Invite sent to ${email}`) })); dispatch(doFetchInviteStatus()); }).catch(error => { diff --git a/dist/bundle.js b/dist/bundle.js index 244e27d..e97ae9a 100644 --- a/dist/bundle.js +++ b/dist/bundle.js @@ -2994,7 +2994,7 @@ function doUserInviteNew(email) { } }); dispatch(Object(lbry_redux__WEBPACK_IMPORTED_MODULE_0__["doToast"])({ - message: __('Invite sent to %s', email) + message: __("Invite sent to ".concat(email)) })); dispatch(doFetchInviteStatus()); })["catch"](function (error) { diff --git a/src/redux/actions/user.js b/src/redux/actions/user.js index 6b39c7b..ad69edc 100644 --- a/src/redux/actions/user.js +++ b/src/redux/actions/user.js @@ -371,7 +371,7 @@ export function doUserInviteNew(email) { dispatch( doToast({ - message: __('Invite sent to %s', email), + message: __(`Invite sent to ${email}`), }) );