remove console log

This commit is contained in:
Vikhyath Mondreti
2025-07-11 20:18:30 -07:00
parent 95dfe9e6d2
commit f666ccad43

View File

@@ -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
}