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) {