0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Removed email from update member action

no issue

- Removes email from update member action as it cannot be modified directly
This commit is contained in:
Rish 2020-05-28 17:23:48 +05:30
parent b361754ea9
commit 503cb53f4f

View file

@ -185,8 +185,8 @@ export default class ParentContainer extends React.Component {
} else if (action === 'editBilling') {
await this.GhostApi.member.editBilling();
} else if (action === 'updateMember') {
const {email, name, subscribed} = data;
const member = await this.GhostApi.member.update({email, name, subscribed});
const {name, subscribed} = data;
const member = await this.GhostApi.member.update({name, subscribed});
if (!member) {
this.setState({
action: 'updateMember:failed'