Skip to content

Commit 8d2794e

Browse files
committed
Not including subscribed orgs and pins post login response
1 parent 22f538c commit 8d2794e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ export const arrayToCSV = objArray => {
263263
}
264264

265265
export const refreshCurrentUserCache = callback => {
266-
APIService.user().get(null, null, {includeSubscribedOrgs: true, includeAuthGroups: true, includePins: true, includeFollowing: true}).then(response => {
266+
APIService.user().get(null, null, {includeAuthGroups: true}).then(response => {
267267
if(response.status === 200) {
268268
localStorage.setItem('user', JSON.stringify(response.data));
269269
if(callback) callback(response);

0 commit comments

Comments
 (0)