summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_view/post_header/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/post_view/post_header/index.js')
-rw-r--r--webapp/components/post_view/post_header/index.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/webapp/components/post_view/post_header/index.js b/webapp/components/post_view/post_header/index.js
deleted file mode 100644
index d7aaef1d5..000000000
--- a/webapp/components/post_view/post_header/index.js
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {connect} from 'react-redux';
-
-import {get} from 'mattermost-redux/selectors/entities/preferences';
-import {Preferences} from 'mattermost-redux/constants';
-
-import PostHeader from './post_header.jsx';
-
-function mapStateToProps(state, ownProps) {
- return {
- ...ownProps,
- displayNameType: get(state, Preferences.CATEGORY_DISPLAY_SETTINGS, 'name_format', 'false')
- };
-}
-
-export default connect(mapStateToProps)(PostHeader);