diff --git a/src/components/atoms/canvas.tsx b/src/components/atoms/canvas.tsx index 444d6b0b..f6e6fb1c 100644 --- a/src/components/atoms/canvas.tsx +++ b/src/components/atoms/canvas.tsx @@ -56,6 +56,7 @@ const Canvas = ({ width, height, onCreateRef }: CanvasProps) => { } else { socket.emit('input:mousedown', clickCoordinates); } + notifyLastAction('click'); break; case 'mousemove': const coordinates = getMappedCoordinates(event, canvasRef.current, width, height);