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:
parent
b361754ea9
commit
503cb53f4f
1 changed files with 2 additions and 2 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Reference in a new issue