summaryrefslogtreecommitdiffstats
path: root/webapp/components/quick_switch_modal/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/quick_switch_modal/index.js')
-rw-r--r--webapp/components/quick_switch_modal/index.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/webapp/components/quick_switch_modal/index.js b/webapp/components/quick_switch_modal/index.js
deleted file mode 100644
index ad5d1dd7c..000000000
--- a/webapp/components/quick_switch_modal/index.js
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {connect} from 'react-redux';
-
-import QuickSwitchModal from './quick_switch_modal.jsx';
-
-function mapStateToProps(state, ownProps) {
- return {
- ...ownProps,
- showTeamSwitcher: false
- };
-}
-
-export default connect(mapStateToProps)(QuickSwitchModal);