From 557609f26b4734aaa7c4534aea88b5c3dfa3c6a4 Mon Sep 17 00:00:00 2001 From: Manuel Abascal Date: Tue, 16 Jan 2024 18:38:57 +0200 Subject: [PATCH] fixed logout observable emission (#314) --- frontend/src/app/core/auth/auth-jwt.service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/app/core/auth/auth-jwt.service.ts b/frontend/src/app/core/auth/auth-jwt.service.ts index 7ffad1ece..1085d4e38 100644 --- a/frontend/src/app/core/auth/auth-jwt.service.ts +++ b/frontend/src/app/core/auth/auth-jwt.service.ts @@ -73,6 +73,7 @@ export class AuthServerProvider { 'please try to login again. If the problem continues, contact the support team'); } }); + observer.next(); observer.complete(); }); }