()
| 60 | }; |
| 61 | |
| 62 | const handlePointerUp = () => { |
| 63 | isDrawing.current = false; |
| 64 | }; |
| 65 | |
| 66 | const handlePointerMove = (e: KonvaEventObject<MouseEvent | TouchEvent>) => { |
| 67 | if (tool !== "pen" && tool !== "eraser") return; |
nothing calls this directly
no outgoing calls
no test coverage detected