diff -r d48946d164c6 -r 78246db1cbac client/src/reducers/authReducer.js --- a/client/src/reducers/authReducer.js Fri Jul 28 19:40:35 2017 +0200 +++ b/client/src/reducers/authReducer.js Sun Jul 30 01:02:09 2017 +0200 @@ -103,7 +103,7 @@ export const groups = (state = Immutable.List([]), action) => { switch (action.type) { case types.GROUP_LOAD_SUCCESS: - return Immutable.List(action.groups); + return Immutable.List(action.groups.results); case types.GROUP_CREATE_SUCCESS: return state.push(action.group); default: