From f119fc78dda4d1e828dde04f378a63a93e3a0a7e Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Thu, 2 Jul 2020 18:39:28 +0200 Subject: Add current progress on frontend port --- frontend/src/auth/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontend/src/auth/index.js') 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) -- cgit v1.2.3