From f666ccad4397bad1e3295aef84e886aff98f4e52 Mon Sep 17 00:00:00 2001 From: Vikhyath Mondreti Date: Fri, 11 Jul 2025 20:18:30 -0700 Subject: [PATCH] remove console log --- apps/sim/contexts/socket-context.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/sim/contexts/socket-context.tsx b/apps/sim/contexts/socket-context.tsx index 11987bb0cb..90f28477c2 100644 --- a/apps/sim/contexts/socket-context.tsx +++ b/apps/sim/contexts/socket-context.tsx @@ -474,10 +474,6 @@ export function SocketProvider({ children, user }: SocketProviderProps) { const emitWorkflowOperation = useCallback( (operation: string, target: string, payload: any, operationId?: string) => { if (!socket || !currentWorkflowId) { - console.log('❌ Cannot emit - missing requirements', { - hasSocket: !!socket, - currentWorkflowId, - }) return }