diff --git a/projects/common/src/fm/effects/app-common.effects.ts b/projects/common/src/fm/effects/app-common.effects.ts index da8d852..7ae5d46 100644 --- a/projects/common/src/fm/effects/app-common.effects.ts +++ b/projects/common/src/fm/effects/app-common.effects.ts @@ -33,7 +33,7 @@ export class AppCommonEffects { logout$: Observable = this.actions$.pipe( ofType(appCommonActions.LOGOUT), mergeMap((action) => { - this.oauthService$.logOut(true); + this.oauthService$.revokeTokenAndLogout(); return []; }));