aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-10-18 14:30:29 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-10-18 14:30:29 +0200
commit71b9e05d45bac8a592b859dbb707fe4ac8ff4ffd (patch)
tree4c79892793c19439067cd3571e1b61232b6190e9 /src/containers/auth
parentshare app version with webview (diff)
downloadferdium-app-71b9e05d45bac8a592b859dbb707fe4ac8ff4ffd.tar.gz
ferdium-app-71b9e05d45bac8a592b859dbb707fe4ac8ff4ffd.tar.zst
ferdium-app-71b9e05d45bac8a592b859dbb707fe4ac8ff4ffd.zip
Fix name in pricing screen
Diffstat (limited to 'src/containers/auth')
-rw-r--r--src/containers/auth/PricingScreen.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/containers/auth/PricingScreen.js b/src/containers/auth/PricingScreen.js
index 55811ed23..21c859c12 100644
--- a/src/containers/auth/PricingScreen.js
+++ b/src/containers/auth/PricingScreen.js
@@ -42,7 +42,7 @@ export default @inject('stores', 'actions') @observer class PricingScreen extend
42 stores, 42 stores,
43 } = this.props; 43 } = this.props;
44 44
45 const { getUserInfoRequest, activateTrialRequest } = stores.user; 45 const { getUserInfoRequest, activateTrialRequest, data } = stores.user;
46 const { featuresRequest, features } = stores.features; 46 const { featuresRequest, features } = stores.features;
47 47
48 const { pricingConfig } = features; 48 const { pricingConfig } = features;
@@ -64,6 +64,7 @@ export default @inject('stores', 'actions') @observer class PricingScreen extend
64 error={error} 64 error={error}
65 currency={currency} 65 currency={currency}
66 price={price} 66 price={price}
67 name={data.firstname}
67 /> 68 />
68 ); 69 );
69 } 70 }