From 603fe8ad261cc854622beed4e478d2cbae61d01d Mon Sep 17 00:00:00 2001 From: edraft Date: Fri, 3 Jan 2025 14:53:57 +0100 Subject: [PATCH] Removed console log --- web/src/app/components/home/home.component.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/web/src/app/components/home/home.component.ts b/web/src/app/components/home/home.component.ts index d5715b1..bc54070 100644 --- a/web/src/app/components/home/home.component.ts +++ b/web/src/app/components/home/home.component.ts @@ -8,7 +8,6 @@ import { KeycloakService } from "keycloak-angular"; }) export class HomeComponent { constructor(private keycloak: KeycloakService) { - console.warn("home", this.keycloak.isLoggedIn()); if (!this.keycloak.isLoggedIn()) { this.keycloak.login().then(() => {}); }