Collapse redux log groups in the console

This commit is contained in:
Adam Butterworth
2019-02-28 09:36:28 -05:00
committed by Adam Butterworth
parent baf6e83f73
commit 41339d8d6e

View File

@@ -13,7 +13,9 @@ import rootSaga from '../sagas/RootSaga';
export default function configureStore() {
const history = createBrowserHistory();
const loggerMiddleware = createLogger();
const loggerMiddleware = createLogger({
collapsed: true,
});
const sagaMiddleware = createSagaMiddleware();
const initialState = apiClient.getAuthenticationState();