diff options
author | elijah <elijah@riseup.net> | 2017-02-24 20:35:24 -0800 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2017-02-24 20:35:48 -0800 |
commit | 1a9968c1e2592be5baae4bf2c6551ad7f5228f17 (patch) | |
tree | 6b1c254626e9dc7240858e73f7d9cb2e1232512a /ui/app/components/main_panel/index.js | |
parent | 904e99c658e647a1c9acbb80a1f54c593a57bf61 (diff) |
[bug] update UI to use current API
Diffstat (limited to 'ui/app/components/main_panel/index.js')
-rw-r--r-- | ui/app/components/main_panel/index.js | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/ui/app/components/main_panel/index.js b/ui/app/components/main_panel/index.js index 05a1e90..cac58cb 100644 --- a/ui/app/components/main_panel/index.js +++ b/ui/app/components/main_panel/index.js @@ -76,14 +76,12 @@ export default class MainPanel extends React.Component { } } - if (false) { - sidePanel = ( - <AccountList account={this.state.account} - accounts={this.state.accounts} - onSelect={this.activateAccount} - onRemove={this.removeAccount}/> - ) - } + sidePanel = ( + <AccountList account={this.state.account} + accounts={this.state.accounts} + onSelect={this.activateAccount} + onRemove={this.removeAccount}/> + ) return ( <div className="main-panel"> |