File tree Expand file tree Collapse file tree
03-Calling-an-API/src/Auth
04-Authorization/src/Auth
05-Token-Renewal/src/Auth Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -67,7 +67,6 @@ export default class Auth {
6767
6868 renewSession ( ) {
6969 this . auth0 . checkSession ( { } , ( err , authResult ) => {
70- console . log ( err , authResult ) ;
7170 if ( authResult && authResult . accessToken && authResult . idToken ) {
7271 this . setSession ( authResult ) ;
7372 } else if ( err ) {
Original file line number Diff line number Diff line change @@ -68,7 +68,6 @@ export default class Auth {
6868
6969 renewSession ( ) {
7070 this . auth0 . checkSession ( { } , ( err , authResult ) => {
71- console . log ( err , authResult ) ;
7271 if ( authResult && authResult . accessToken && authResult . idToken ) {
7372 this . setSession ( authResult ) ;
7473 } else if ( err ) {
Original file line number Diff line number Diff line change @@ -74,7 +74,6 @@ export default class Auth {
7474
7575 renewSession ( ) {
7676 this . auth0 . checkSession ( { } , ( err , authResult ) => {
77- console . log ( err , authResult ) ;
7877 if ( authResult && authResult . accessToken && authResult . idToken ) {
7978 this . setSession ( authResult ) ;
8079 } else if ( err ) {
Original file line number Diff line number Diff line change @@ -73,7 +73,6 @@ export default class Auth {
7373
7474 renewSession ( ) {
7575 this . auth0 . checkSession ( { } , ( err , authResult ) => {
76- console . log ( err , authResult ) ;
7776 if ( authResult && authResult . accessToken && authResult . idToken ) {
7877 this . setSession ( authResult ) ;
7978 } else if ( err ) {
You can’t perform that action at this time.
0 commit comments