Skip to content

Commit

Permalink
ID-1632 Updated comment
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenfowler committed May 30, 2024
1 parent b659f02 commit 3c31d42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/passport/sdk/src/authManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export default class AuthManager {
resolve(AuthManager.mapOidcUserToDomainModel(oidcUser));
})
.catch((error: unknown) => {
// reject with the error if it is not caused by a blocked popup
// Reject with the error if it is not caused by a blocked popup
if (!(error instanceof Error) || error.message !== 'Attempted to navigate on a disposed window') {
reject(error);
}
Expand Down

0 comments on commit 3c31d42

Please sign in to comment.