diff --git a/src/components/atoms/canvas.tsx b/src/components/atoms/canvas.tsx index 6b16dab2..f6e6fb1c 100644 --- a/src/components/atoms/canvas.tsx +++ b/src/components/atoms/canvas.tsx @@ -52,7 +52,7 @@ const Canvas = ({ width, height, onCreateRef }: CanvasProps) => { case 'mousedown': const clickCoordinates = getMappedCoordinates(event, canvasRef.current, width, height); if (getTextRef.current === true) { - return; + console.log('get text') } else { socket.emit('input:mousedown', clickCoordinates); }