about summary refs log tree commit diff
path: root/app/assets/javascripts/components/containers/navigation_container.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/components/containers/navigation_container.jsx')
-rw-r--r--app/assets/javascripts/components/containers/navigation_container.jsx8
1 files changed, 0 insertions, 8 deletions
diff --git a/app/assets/javascripts/components/containers/navigation_container.jsx b/app/assets/javascripts/components/containers/navigation_container.jsx
deleted file mode 100644
index 4aeea4c37..000000000
--- a/app/assets/javascripts/components/containers/navigation_container.jsx
+++ /dev/null
@@ -1,8 +0,0 @@
-import { connect }   from 'react-redux';
-import NavigationBar from '../components/navigation_bar';
-
-const mapStateToProps = (state, props) => ({
-  account: state.getIn(['timelines', 'accounts', state.getIn(['timelines', 'me'])])
-});
-
-export default connect(mapStateToProps)(NavigationBar);