diff --git a/src/services/auth/redux/actions.ts b/src/services/auth/redux/actions.ts index 770bd8e..7a27650 100644 --- a/src/services/auth/redux/actions.ts +++ b/src/services/auth/redux/actions.ts @@ -18,11 +18,8 @@ const signOutAction = (): SuccessAction => ({ export const signIn = (state: string) => createApiAction( { - path: '/hydra/callback', + path: `/hydra/callback?state=${state}`, method: 'GET', - headers: { - state, - }, }, [AuthActionTypes.SIGN_IN_START, AuthActionTypes.SIGN_IN_SUCCESS, AuthActionTypes.SIGN_IN_FAILURE], );