refactor(connectionlookup): use maps instead of arrays

This commit is contained in:
moklick
2023-12-06 17:49:34 +01:00
parent b6743a3cf3
commit a58f915697
6 changed files with 76 additions and 61 deletions

View File

@@ -23,7 +23,7 @@ function CustomHandle({ nodeId, ...handleProps }: HandleComponentProps & { nodeI
});
useEffect(() => {
// console.log('useEffect, node id:', nodeId, handleProps.type, status);
console.log('useEffect, node id:', nodeId, handleProps.type, status);
}, [status]);
return <Handle {...handleProps} />;