summaryrefslogtreecommitdiffhomepage
path: root/app/components
diff options
context:
space:
mode:
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 (