summaryrefslogtreecommitdiffstats
path: root/webapp/components/popover_list_members/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/popover_list_members/index.js')
-rw-r--r--webapp/components/popover_list_members/index.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/webapp/components/popover_list_members/index.js b/webapp/components/popover_list_members/index.js
deleted file mode 100644
index 3e9087e0d..000000000
--- a/webapp/components/popover_list_members/index.js
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {connect} from 'react-redux';
-import {bindActionCreators} from 'redux';
-import {getProfilesInChannel} from 'mattermost-redux/actions/users';
-
-import PopoverListMembers from './popover_list_members.jsx';
-
-function mapStateToProps(state, ownProps) {
- return {
- ...ownProps
- };
-}
-
-function mapDispatchToProps(dispatch) {
- return {
- actions: bindActionCreators({
- getProfilesInChannel
- }, dispatch)
- };
-}
-
-export default connect(mapStateToProps, mapDispatchToProps)(PopoverListMembers);