From 72e0a7dd2e62e16a739e8898b449c11f422ba12c Mon Sep 17 00:00:00 2001 From: Huffle Date: Mon, 26 May 2025 13:39:49 +0200 Subject: [PATCH] remove console.log --- .../allowance-planner-v2/src/app/pages/history/history.page.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/allowance-planner-v2/src/app/pages/history/history.page.ts b/frontend/allowance-planner-v2/src/app/pages/history/history.page.ts index 9500bf8..e779e97 100644 --- a/frontend/allowance-planner-v2/src/app/pages/history/history.page.ts +++ b/frontend/allowance-planner-v2/src/app/pages/history/history.page.ts @@ -31,7 +31,6 @@ export class HistoryPage implements ViewWillEnter { getHistory() { setTimeout(() => { this.historyService.getHistoryList(this.userId).subscribe(history => { - console.log('HISTORY: ', history); this.history$.next(history); }) }, 20);