We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5a4e39 commit ec6f425Copy full SHA for ec6f425
ClientApp/app/core/services/account.service.ts
@@ -26,10 +26,8 @@ export class AccountService {
26
return undefined;
27
}
28
public logout() {
29
- this.dataService.post('api/account/logout').subscribe((res) => {
30
- this.oAuthService.logOut();
31
- this.utilityService.navigateToSignIn();
32
- });
+ this.oAuthService.logOut();
+ this.utilityService.navigateToSignIn();
33
34
35
public get accessToken(): string {
0 commit comments