From 503cb53f4fb3c895ce6cd63d0e86e41f2bd60203 Mon Sep 17 00:00:00 2001 From: Rish Date: Thu, 28 May 2020 17:23:48 +0530 Subject: [PATCH] Removed email from update member action no issue - Removes email from update member action as it cannot be modified directly --- ghost/portal/src/components/ParentContainer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/portal/src/components/ParentContainer.js b/ghost/portal/src/components/ParentContainer.js index 92ab3a4b3c..5de434239e 100644 --- a/ghost/portal/src/components/ParentContainer.js +++ b/ghost/portal/src/components/ParentContainer.js @@ -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'