Updated group_removed_accounts redux value

• Updated:
- group_removed_accounts redux value
This commit is contained in:
mgabdev
2020-09-10 15:24:38 -05:00
parent 14927ac227
commit c4fdd36190
3 changed files with 6 additions and 8 deletions

View File

@@ -85,8 +85,8 @@ const mapStateToProps = (state, { params }) => {
return {
group,
groupId,
accountIds: state.getIn(['user_lists', 'groups_removed_accounts', groupId, 'items']),
hasMore: !!state.getIn(['user_lists', 'groups_removed_accounts', groupId, 'next']),
accountIds: state.getIn(['user_lists', 'group_removed_accounts', groupId, 'items']),
hasMore: !!state.getIn(['user_lists', 'group_removed_accounts', groupId, 'next']),
}
}