diff --git a/src/components/atoms/canvas.tsx b/src/components/atoms/canvas.tsx index f6e6fb1c..6b16dab2 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) { - console.log('get text') + return; } else { socket.emit('input:mousedown', clickCoordinates); }