fix: invite notification

This commit is contained in:
Thomas Zarebczan 2019-10-26 16:56:01 -04:00
parent 8d9d244d67
commit 27b6fcb839
3 changed files with 3 additions and 3 deletions

2
dist/bundle.es.js vendored
View file

@ -1500,7 +1500,7 @@ function doUserInviteNew(email) {
} }
}); });
dispatch(lbryRedux.doToast({ dispatch(lbryRedux.doToast({
message: __('Invite sent to %s', email) message: __(`Invite sent to ${email}`)
})); }));
dispatch(doFetchInviteStatus()); dispatch(doFetchInviteStatus());
}).catch(error => { }).catch(error => {

2
dist/bundle.js vendored
View file

@ -2994,7 +2994,7 @@ function doUserInviteNew(email) {
} }
}); });
dispatch(Object(lbry_redux__WEBPACK_IMPORTED_MODULE_0__["doToast"])({ dispatch(Object(lbry_redux__WEBPACK_IMPORTED_MODULE_0__["doToast"])({
message: __('Invite sent to %s', email) message: __("Invite sent to ".concat(email))
})); }));
dispatch(doFetchInviteStatus()); dispatch(doFetchInviteStatus());
})["catch"](function (error) { })["catch"](function (error) {

View file

@ -371,7 +371,7 @@ export function doUserInviteNew(email) {
dispatch( dispatch(
doToast({ doToast({
message: __('Invite sent to %s', email), message: __(`Invite sent to ${email}`),
}) })
); );