Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const errorCallback = error => {
const { message } = error;
oidcLog.error(`There was an error handling the token callback: ${message}`);
history.push(`/authentication/not-authenticated?message=${message}`);
};
export const onError = dispatch => error => {
oidcLog.error(`Error : ${error.message}`);
dispatch({ type: 'ON_ERROR', message: error.message });
};