Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e54c54e

Browse files
committedMar 17, 2021
Fix Lint
1 parent 79c9117 commit e54c54e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/services/members.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,17 +95,17 @@ class MembersService {
9595
const groupIdsArray = _.isArray(groupIds) ? groupIds : _.split(groupIds, ',');
9696
const groupIdChunks = _.chunk(groupIdsArray, 50);
9797

98-
const getStatRequests = _.map(groupIdChunks, async groupIdChunk => {
98+
const getStatRequests = _.map(groupIdChunks, async (groupIdChunk) => {
9999
const res = await this.private.api.get(`/members/${handle}/stats?groupIds=${_.join(groupIdChunk)}`);
100100
return getApiResponsePayload(res, false);
101101
});
102102
const results = await Promise.all(getStatRequests);
103103

104104
return _.uniqBy(
105105
_.flatten(
106-
_.filter(results, _.isArray)
106+
_.filter(results, _.isArray),
107107
),
108-
item => item.groupId
108+
item => item.groupId,
109109
);
110110
}
111111

0 commit comments

Comments
 (0)
Please sign in to comment.