diff --git a/02-Custom-Login/components/auth/auth.service.js b/02-Custom-Login/components/auth/auth.service.js index f1575df..0a9e597 100644 --- a/02-Custom-Login/components/auth/auth.service.js +++ b/02-Custom-Login/components/auth/auth.service.js @@ -40,6 +40,9 @@ function handleParseHash() { angularAuth0.parseHash(function(err, authResult) { + if (err) { + console.log(err); + } if (authResult && authResult.idToken) { setUser(authResult); }