aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-11-14 22:14:33 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-11-14 22:14:33 +0100
commitf98f17c01ee23f4414d09ae671d91452ea2ce635 (patch)
tree17f96c2206ba44da9d96806239efac814874b9de /src/components/ui
parentMerge pull request #263 from meetfranz/feature/mute-service (diff)
downloadferdium-app-f98f17c01ee23f4414d09ae671d91452ea2ce635.tar.gz
ferdium-app-f98f17c01ee23f4414d09ae671d91452ea2ce635.tar.zst
ferdium-app-f98f17c01ee23f4414d09ae671d91452ea2ce635.zip
Add missing EU tax info
Diffstat (limited to 'src/components/ui')
-rw-r--r--src/components/ui/Subscription.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/ui/Subscription.js b/src/components/ui/Subscription.js
index fe0925a26..35a1105d2 100644
--- a/src/components/ui/Subscription.js
+++ b/src/components/ui/Subscription.js
@@ -93,6 +93,10 @@ const messages = defineMessages({
93 id: 'subscription.mining.moreInformation', 93 id: 'subscription.mining.moreInformation',
94 defaultMessage: '!!!Get more information about this plan', 94 defaultMessage: '!!!Get more information about this plan',
95 }, 95 },
96 euTaxInfo: {
97 id: 'subscription.euTaxInfo',
98 defaultMessage: '!!!EU residents: local sales tax may apply',
99 },
96}); 100});
97 101
98@observer 102@observer
@@ -259,6 +263,11 @@ export default class SubscriptionForm extends Component {
259 onClick={() => handlePayment(this.form.$('paymentTier').value)} 263 onClick={() => handlePayment(this.form.$('paymentTier').value)}
260 /> 264 />
261 )} 265 )}
266 {this.form.$('paymentTier').value !== 'skip' && this.form.$('paymentTier').value !== 'mining' && (
267 <p className="legal">
268 {intl.formatMessage(messages.euTaxInfo)}
269 </p>
270 )}
262 </Loader> 271 </Loader>
263 ); 272 );
264 } 273 }