summaryrefslogtreecommitdiffstats
path: root/webapp/components/at_mention/index.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/at_mention/index.jsx')
-rw-r--r--webapp/components/at_mention/index.jsx12
1 files changed, 1 insertions, 11 deletions
diff --git a/webapp/components/at_mention/index.jsx b/webapp/components/at_mention/index.jsx
index c733158c6..37c886bbd 100644
--- a/webapp/components/at_mention/index.jsx
+++ b/webapp/components/at_mention/index.jsx
@@ -5,8 +5,6 @@ import {connect} from 'react-redux';
import {getUsersByUsername} from 'mattermost-redux/selectors/entities/users';
-import {searchForTerm} from 'actions/post_actions.jsx';
-
import AtMention from './at_mention.jsx';
function mapStateToProps(state, ownProps) {
@@ -16,12 +14,4 @@ function mapStateToProps(state, ownProps) {
};
}
-function mapDispatchToProps() {
- return {
- actions: {
- searchForTerm
- }
- };
-}
-
-export default connect(mapStateToProps, mapDispatchToProps)(AtMention);
+export default connect(mapStateToProps)(AtMention);