(id, node)
| 108 | }, [selectedTool, isPanning]); |
| 109 | |
| 110 | const registerShapeRef: ShapeRefRegistry = (id, node) => { |
| 111 | if (node) { |
| 112 | shapeRefs.current.set(id, node); |
| 113 | } else { |
| 114 | shapeRefs.current.delete(id); |
| 115 | } |
| 116 | }; |
| 117 | |
| 118 | const handleShapeSelect = (id: string, type: TransformerSelectionType) => { |
| 119 | if (!isPointerTool) return; |
nothing calls this directly
no outgoing calls
no test coverage detected