fix: update logout navigation to use navigateByUrl for cleaner routing

This commit is contained in:
Bangara Raju Kottedi 2026-02-15 20:36:16 +05:30
parent 9a90903b33
commit 7d63845951

View File

@ -111,7 +111,7 @@ export class AuthService {
this.http.post<void>(this.api('/api/v1/auth/logout'), {}).subscribe(); this.http.post<void>(this.api('/api/v1/auth/logout'), {}).subscribe();
this.accessToken = null; this.accessToken = null;
this.safeRemoveToken(); this.safeRemoveToken();
this.router.navigate(['/admin/login']); this.router.navigateByUrl('login');
} }
refreshToken(): Observable<RefreshTokenResponse> { refreshToken(): Observable<RefreshTokenResponse> {