From 767fbc1112540a9dbd2e1961a0100ae4a6342675 Mon Sep 17 00:00:00 2001 From: Rish Date: Fri, 1 May 2020 20:55:20 +0530 Subject: [PATCH] Cleaned up checkoutPlan action no issue - Removed checkoutUrls as we use default value for now --- ghost/portal/src/components/ParentContainer.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ghost/portal/src/components/ParentContainer.js b/ghost/portal/src/components/ParentContainer.js index 31c84059e6..5a64ca486d 100644 --- a/ghost/portal/src/components/ParentContainer.js +++ b/ghost/portal/src/components/ParentContainer.js @@ -145,13 +145,9 @@ export default class ParentContainer extends React.Component { page: 'magiclink' }); } else if (action === 'checkoutPlan') { - const checkoutSuccessUrl = (new URL('/account/?stripe=billing-update-success', window.location.href)).href; - const checkoutCancelUrl = (new URL('/account/?stripe=billing-update-cancel', window.location.href)).href; const {plan} = data; await this.GhostApi.member.checkoutPlan({ - plan, - checkoutSuccessUrl, - checkoutCancelUrl + plan }); } } catch (e) {