summaryrefslogtreecommitdiffstats
path: root/webapp/components/status_dropdown
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/status_dropdown')
-rw-r--r--webapp/components/status_dropdown/index.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/components/status_dropdown/index.jsx b/webapp/components/status_dropdown/index.jsx
index bd2f7d7d0..e200b2e34 100644
--- a/webapp/components/status_dropdown/index.jsx
+++ b/webapp/components/status_dropdown/index.jsx
@@ -5,7 +5,7 @@ import {
getCurrentUser,
getStatusForUserId
} from 'mattermost-redux/selectors/entities/users';
-import {Client} from 'mattermost-redux/client';
+import {Client4} from 'mattermost-redux/client';
import StatusDropdown from 'components/status_dropdown/status_dropdown.jsx';
@@ -13,7 +13,7 @@ function mapStateToProps(state) {
const currentUser = getCurrentUser(state);
const userId = currentUser.id;
const lastPicUpdate = currentUser.last_picture_update;
- const profilePicture = Client.getProfilePictureUrl(userId, lastPicUpdate);
+ const profilePicture = Client4.getProfilePictureUrl(userId, lastPicUpdate);
const status = getStatusForUserId(state, currentUser.id);
return {
userId,