aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/subscription
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-09-02 11:47:32 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-09-02 11:47:32 +0200
commita7e2742d9269c098c37cc84b81ca9ef4863ec93a (patch)
tree6c48c5a157c28e303fd091e008857b3cd109ac8e /src/containers/subscription
parentAdd "see all options" (diff)
downloadferdium-app-a7e2742d9269c098c37cc84b81ca9ef4863ec93a.tar.gz
ferdium-app-a7e2742d9269c098c37cc84b81ca9ef4863ec93a.tar.zst
ferdium-app-a7e2742d9269c098c37cc84b81ca9ef4863ec93a.zip
Add CTA for pro upgrade
Diffstat (limited to 'src/containers/subscription')
-rw-r--r--src/containers/subscription/SubscriptionFormScreen.js7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/containers/subscription/SubscriptionFormScreen.js b/src/containers/subscription/SubscriptionFormScreen.js
index 5508c120c..e9e457084 100644
--- a/src/containers/subscription/SubscriptionFormScreen.js
+++ b/src/containers/subscription/SubscriptionFormScreen.js
@@ -20,12 +20,7 @@ export default @inject('stores', 'actions') @observer class SubscriptionFormScre
20 } = stores; 20 } = stores;
21 21
22 let hostedPageURL = !user.data.hadSubscription ? features.features.planSelectionURL : features.features.subscribeURL; 22 let hostedPageURL = !user.data.hadSubscription ? features.features.planSelectionURL : features.features.subscribeURL;
23 const url = new URL(hostedPageURL); 23 hostedPageURL = user.getAuthURL(hostedPageURL);
24 const params = new URLSearchParams(url.search.slice(1));
25
26 params.append('authToken', user.authToken);
27
28 hostedPageURL = `${url.origin}${url.pathname}?${params.toString()}`;
29 24
30 actions.app.openExternalUrl({ url: hostedPageURL }); 25 actions.app.openExternalUrl({ url: hostedPageURL });
31 } 26 }