diff options
Diffstat (limited to 'frontend/src/auth')
| -rw-r--r-- | frontend/src/auth/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/auth/index.js b/frontend/src/auth/index.js index 7922f567..f93c7141 100644 --- a/frontend/src/auth/index.js +++ b/frontend/src/auth/index.js @@ -29,7 +29,7 @@ export const getAuthToken = () => { return authObj.authToken } -export const saveAuthLocalStorage = payload => { +export const saveAuthLocalStorage = (payload) => { localStorage.setItem('auth', JSON.stringify(payload)) } @@ -37,7 +37,7 @@ export const clearAuthLocalStorage = () => { localStorage.setItem('auth', '') } -export const authRedirectMiddleware = store => next => action => { +export const authRedirectMiddleware = (store) => (next) => (action) => { switch (action.type) { case LOG_IN_SUCCEEDED: saveAuthLocalStorage(action.payload) |
