diff --git a/src/stores/user/duck/operations.js b/src/stores/user/duck/operations.js index 5a3453a..450cbbe 100644 --- a/src/stores/user/duck/operations.js +++ b/src/stores/user/duck/operations.js @@ -77,18 +77,6 @@ export const createSession = (data) => } dispatch(actions.login(userFull)) - - store.subscribe(() => { - saveState({ - auth: store.getState().auth - }); - }); - - store.subscribe(lodash.throttle(() => { - saveState({ - auth: store.getState().auth - }); - }, 1000)); } export const updateSession = (data) =>