allow remove of group members if group size > 10

pull/859/head
Audric Ackermann 5 years ago
parent e2f74b0701
commit 2b2c36bb2e
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -202,17 +202,6 @@ export class UpdateGroupMembersDialog extends React.Component<Props, State> {
}
});
const newMemberCount = this.getMemberCount(updatedFriends);
if (newMemberCount > window.CONSTANTS.SMALL_GROUP_SIZE_LIMIT) {
const msg = `${this.props.i18n('maxGroupMembersError')} ${
window.CONSTANTS.SMALL_GROUP_SIZE_LIMIT
}`;
this.onShowError(msg);
return;
}
this.setState(state => {
return {
...state,

Loading…
Cancel
Save