Reference correct variable in nested try catch

Tiny inconsistency I noticed when using this project template
This commit is contained in:
Scott Batary 2019-09-13 14:39:18 -05:00 committed by Artak
parent 752d99ca53
commit f3e6b74623
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ export class AuthorizeService {
await this.userManager.signoutRedirect(this.createArguments(state));
return this.redirect();
} catch (redirectSignOutError) {
console.log('Redirect signout error: ', popupSignOutError);
console.log('Redirect signout error: ', redirectSignOutError);
return this.error(redirectSignOutError);
}
}