From bfc1d135debe5f2a0d9d63fdfb9d0cbf9e14cd5a Mon Sep 17 00:00:00 2001 From: Huffle Date: Thu, 15 May 2025 11:04:15 +0200 Subject: [PATCH] Remove console.log --- frontend/allowance-planner-v2/src/app/app.component.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/allowance-planner-v2/src/app/app.component.ts b/frontend/allowance-planner-v2/src/app/app.component.ts index a6c0025..cc98b6c 100644 --- a/frontend/allowance-planner-v2/src/app/app.component.ts +++ b/frontend/allowance-planner-v2/src/app/app.component.ts @@ -13,7 +13,6 @@ export class AppComponent { this.storageService.init().then(() => { this.storageService.getCurrentUserId().then((userId) => { if (userId !== undefined && userId !== null) { - console.log('userId: ', userId); this.router.navigate(['/tabs/allowance', userId]); } });