Skip to content

Commit 665ae6a

Browse files
author
vikasrohit
authored
Merge branch 'master' into develop
2 parents 825973d + b0174d2 commit 665ae6a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/common/helper.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,9 @@ async function getMemberDetailsByUserIds (userIds) {
159159
'Content-Type': 'application/json',
160160
Authorization: `Bearer ${token}`
161161
}
162-
}).then(res => _.get(res, 'data.result.content', null))
162+
}).then((res) => {
163+
return _.get(res, 'data.result.content', null)
164+
})
163165
} catch (err) {
164166
return Promise.reject(err)
165167
}

0 commit comments

Comments
 (0)