chore(dashboard): Remove temporary debug console.log statements

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 <noreply@anthropic.com>
This commit is contained in:
Urtzi Alfaro
2025-11-27 07:45:42 +01:00
parent 8bce5ee594
commit ddf841bd70

View File

@@ -168,7 +168,6 @@ export function NewDashboardPage() {
); );
useEffect(() => { useEffect(() => {
console.log('[Dashboard] batchNotifications effect triggered', { latestBatchNotificationId });
const currentBatchNotificationId = latestBatchNotificationId || ''; const currentBatchNotificationId = latestBatchNotificationId || '';
if (currentBatchNotificationId && if (currentBatchNotificationId &&
currentBatchNotificationId !== prevBatchNotificationsRef.current) { currentBatchNotificationId !== prevBatchNotificationsRef.current) {
@@ -182,7 +181,6 @@ export function NewDashboardPage() {
}, [latestBatchNotificationId]); // Only run when a NEW notification arrives }, [latestBatchNotificationId]); // Only run when a NEW notification arrives
useEffect(() => { useEffect(() => {
console.log('[Dashboard] deliveryNotifications effect triggered', { latestDeliveryNotificationId });
const currentDeliveryNotificationId = latestDeliveryNotificationId || ''; const currentDeliveryNotificationId = latestDeliveryNotificationId || '';
if (currentDeliveryNotificationId && if (currentDeliveryNotificationId &&
currentDeliveryNotificationId !== prevDeliveryNotificationsRef.current) { currentDeliveryNotificationId !== prevDeliveryNotificationsRef.current) {
@@ -196,7 +194,6 @@ export function NewDashboardPage() {
}, [latestDeliveryNotificationId]); // Only run when a NEW notification arrives }, [latestDeliveryNotificationId]); // Only run when a NEW notification arrives
useEffect(() => { useEffect(() => {
console.log('[Dashboard] orchestrationNotifications effect triggered', { latestOrchestrationNotificationId });
const currentOrchestrationNotificationId = latestOrchestrationNotificationId || ''; const currentOrchestrationNotificationId = latestOrchestrationNotificationId || '';
if (currentOrchestrationNotificationId && if (currentOrchestrationNotificationId &&
currentOrchestrationNotificationId !== prevOrchestrationNotificationsRef.current) { currentOrchestrationNotificationId !== prevOrchestrationNotificationsRef.current) {