summaryrefslogtreecommitdiffhomepage
path: root/app/components
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@codeispoetry.ru>2017-03-06 14:37:11 +0000
committerAndrej Mihajlov <and@codeispoetry.ru>2017-03-06 14:37:11 +0000
commitcf41ee684ef0086429cef05659235b3a0e0a6ecb (patch)
treeb147d9fcceea56dbe693e79b59903246c139e68e /app/components
parentf0bd208d19e8a67b8c364efb9e0d4da1faba5957 (diff)
downloadmullvadvpn-cf41ee684ef0086429cef05659235b3a0e0a6ecb.tar.xz
mullvadvpn-cf41ee684ef0086429cef05659235b3a0e0a6ecb.zip
Add paidUntil
Diffstat (limited to 'app/components')
-rw-r--r--app/components/Account.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/components/Account.js b/app/components/Account.js
index e724d314c5..1e98a425d6 100644
--- a/app/components/Account.js
+++ b/app/components/Account.js
@@ -2,7 +2,6 @@ import React, { Component, PropTypes } from 'react';
import { If, Then } from 'react-if';
import { Layout, Container, Header } from './Layout';
import { formatAccount } from '../lib/formatters';
-import { LoginState } from '../enums';
export default class Account extends Component {
@@ -25,7 +24,6 @@ export default class Account extends Component {
}
render() {
- const isLoggedIn = this.props.user.status === LoginState.ok;
let formattedAccountId = formatAccount(this.props.user.account);
return (