Skip to content

Commit

Permalink
Fixed typo in AuthGuardBpmService
Browse files Browse the repository at this point in the history
  • Loading branch information
swapnil-verma-gl committed Jul 2, 2024
1 parent 5fe67f3 commit 12c4182
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core/src/lib/auth/guard/auth-guard-bpm.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const AuthGuardBpm = (state: RouterStateSnapshot): Observable<boolean | U
if (authenticationService.isLoggedIn() && authenticationService.isOauth() && isLoginFragmentPresent()) {
return redirectSSOSuccessURL();
}
if (authenticationService.isBpmLoggedIn() || withCredentials) {
if (authenticationService.isBpmLoggedIn() || withCredentials()) {
return true;
}

Expand Down

0 comments on commit 12c4182

Please sign in to comment.