From ddf841bd70fad861bc7e56198d10d4daa54ce8d8 Mon Sep 17 00:00:00 2001 From: Urtzi Alfaro Date: Thu, 27 Nov 2025 07:45:42 +0100 Subject: [PATCH] chore(dashboard): Remove temporary debug console.log statements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed debugging logs added during infinite loop investigation. The fix has been verified and these logs are no longer needed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- frontend/src/pages/app/DashboardPage.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/frontend/src/pages/app/DashboardPage.tsx b/frontend/src/pages/app/DashboardPage.tsx index acca6b7b..2962c11c 100644 --- a/frontend/src/pages/app/DashboardPage.tsx +++ b/frontend/src/pages/app/DashboardPage.tsx @@ -168,7 +168,6 @@ export function NewDashboardPage() { ); useEffect(() => { - console.log('[Dashboard] batchNotifications effect triggered', { latestBatchNotificationId }); const currentBatchNotificationId = latestBatchNotificationId || ''; if (currentBatchNotificationId && currentBatchNotificationId !== prevBatchNotificationsRef.current) { @@ -182,7 +181,6 @@ export function NewDashboardPage() { }, [latestBatchNotificationId]); // Only run when a NEW notification arrives useEffect(() => { - console.log('[Dashboard] deliveryNotifications effect triggered', { latestDeliveryNotificationId }); const currentDeliveryNotificationId = latestDeliveryNotificationId || ''; if (currentDeliveryNotificationId && currentDeliveryNotificationId !== prevDeliveryNotificationsRef.current) { @@ -196,7 +194,6 @@ export function NewDashboardPage() { }, [latestDeliveryNotificationId]); // Only run when a NEW notification arrives useEffect(() => { - console.log('[Dashboard] orchestrationNotifications effect triggered', { latestOrchestrationNotificationId }); const currentOrchestrationNotificationId = latestOrchestrationNotificationId || ''; if (currentOrchestrationNotificationId && currentOrchestrationNotificationId !== prevOrchestrationNotificationsRef.current) {