fixed eslint failures

This commit is contained in:
Florian Scholdei
2019-04-17 18:59:58 +02:00
parent 83edce1410
commit 8533dfca4b
2 changed files with 10 additions and 8 deletions

View File

@@ -97,14 +97,14 @@ export const logoutPending = () => {
export const logoutSuccess = () => {
return {
type: LOGOUT_SUCCESS,
type: LOGOUT_SUCCESS
};
};
export const redirectAfterLogout = () => {
return {
type: LOGOUT_REDIRECT
}
};
};
export const logoutFailure = (error: Error) => {
@@ -277,4 +277,3 @@ export const getLogoutFailure = (state: Object) => {
export const isRedirecting = (state: Object) => {
return !!stateAuth(state).redirecting;
};