Skip to content

Commit

Permalink
Remove console statements
Browse files Browse the repository at this point in the history
  • Loading branch information
NSeydoux committed Oct 4, 2023
1 parent 28285b1 commit 250862f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/browser/src/Session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,12 +338,10 @@ export class Session extends EventEmitter implements IHasSessionEventListener {
const url = options.url ?? window.location.href;

this.tokenRequestInProgress = true;
window.console.log("Awaiting incoming redirect handling");
const sessionInfo = await this.clientAuthentication.handleIncomingRedirect(
url,
this.events,
);
window.console.log("incoming redirect handled");
if (isLoggedIn(sessionInfo)) {
this.setSessionInfo(sessionInfo);
const currentUrl = window.localStorage.getItem(KEY_CURRENT_URL);
Expand Down

0 comments on commit 250862f

Please sign in to comment.