Make sure team is passed to initial getProfilesInTeam call (#2043)
This commit is contained in:
parent
ddc4a3057e
commit
4b6bd70db5
1 changed files with 1 additions and 1 deletions
|
|
@ -212,7 +212,7 @@ class MoreDirectMessages extends PureComponent {
|
|||
return this.props.actions.getProfiles(page, General.PROFILE_CHUNK_SIZE);
|
||||
}
|
||||
|
||||
return this.props.actions.getProfilesInTeam(page, General.PROFILE_CHUNK_SIZE);
|
||||
return this.props.actions.getProfilesInTeam(this.props.currentTeamId, page, General.PROFILE_CHUNK_SIZE);
|
||||
};
|
||||
|
||||
searchProfiles = (term) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue