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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user