From 96f02ef992908fb422a7f96412122cfafce71467 Mon Sep 17 00:00:00 2001 From: Patrick McDonagh Date: Fri, 10 Aug 2018 15:02:28 -0500 Subject: [PATCH] formatting --- app/src/reducers/authReducer.js | 7 +++---- app/src/reducers/index.js | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/app/src/reducers/authReducer.js b/app/src/reducers/authReducer.js index 5ce2fe6..bc14f0f 100644 --- a/app/src/reducers/authReducer.js +++ b/app/src/reducers/authReducer.js @@ -17,7 +17,7 @@ const INITIAL_STATE = { last: '', companyName: '', }, - loading: false, + loading: false }; export default (state = INITIAL_STATE, action) => { @@ -37,7 +37,7 @@ export default (state = INITIAL_STATE, action) => { password: '', authToken: action.payload.authToken, user: action.payload.user, - loading: false, + loading: false }; case LOGIN_USER_FAIL: @@ -45,7 +45,7 @@ export default (state = INITIAL_STATE, action) => { ...state, error: 'Authentication failed!', password: '', - loading: false, + loading: false }; case LOGOUT: @@ -55,4 +55,3 @@ export default (state = INITIAL_STATE, action) => { return state; } }; - diff --git a/app/src/reducers/index.js b/app/src/reducers/index.js index 3f9bf29..4fc4d75 100644 --- a/app/src/reducers/index.js +++ b/app/src/reducers/index.js @@ -4,5 +4,5 @@ import MeshifyReducer from './meshifyReducer'; export default combineReducers({ auth: AuthReducer, - meshify: MeshifyReducer, + meshify: MeshifyReducer });