From 197be15e63f0d4afcccc4993f24fc60171e6dfbb Mon Sep 17 00:00:00 2001 From: Rish Date: Wed, 20 May 2020 00:11:58 +0530 Subject: [PATCH] Renamed plan -> planName for update subscription api call refs https://github.com/TryGhost/members.js/issues/20 - API uses planName for update subscription api call --- ghost/portal/src/components/ParentContainer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/portal/src/components/ParentContainer.js b/ghost/portal/src/components/ParentContainer.js index 7b151f305f..3c081bb872 100644 --- a/ghost/portal/src/components/ParentContainer.js +++ b/ghost/portal/src/components/ParentContainer.js @@ -174,7 +174,7 @@ export default class ParentContainer extends React.Component { } else if (action === 'updatePlan') { const {plan, subscriptionId} = data; await this.GhostApi.member.updateSubscription({ - plan, subscriptionId + planName: plan, subscriptionId }); } else if (action === 'editBilling') { await this.GhostApi.member.editBilling();