fix: invite notification
This commit is contained in:
parent
8d9d244d67
commit
27b6fcb839
3 changed files with 3 additions and 3 deletions
2
dist/bundle.es.js
vendored
2
dist/bundle.es.js
vendored
|
@ -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 => {
|
||||
|
|
2
dist/bundle.js
vendored
2
dist/bundle.js
vendored
|
@ -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) {
|
||||
|
|
|
@ -371,7 +371,7 @@ export function doUserInviteNew(email) {
|
|||
|
||||
dispatch(
|
||||
doToast({
|
||||
message: __('Invite sent to %s', email),
|
||||
message: __(`Invite sent to ${email}`),
|
||||
})
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue