From a4a50c297f18f05c53b59450f1c01af7a511b6cf Mon Sep 17 00:00:00 2001 From: Vlad0n20 Date: Thu, 19 Feb 2026 16:14:34 +0200 Subject: [PATCH] fix(ENG-10288): Update logout url --- src/app/core/services/auth.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/core/services/auth.service.ts b/src/app/core/services/auth.service.ts index be9b1f27c..4a9b1543d 100644 --- a/src/app/core/services/auth.service.ts +++ b/src/app/core/services/auth.service.ts @@ -79,7 +79,7 @@ export class AuthService { if (isPlatformBrowser(this.platformId)) { this.cookieService.deleteAll(); - window.location.href = `${this.webUrl}/logout/?next=${encodeURIComponent('/')}`; + window.location.href = `${this.webUrl}/logout/?next=${encodeURIComponent(window.location.href)}`; } }