diff --git a/src/components/atoms/canvas.tsx b/src/components/atoms/canvas.tsx index cd0e2323..3e9d89c0 100644 --- a/src/components/atoms/canvas.tsx +++ b/src/components/atoms/canvas.tsx @@ -54,6 +54,7 @@ const Canvas = ({ width, height, onCreateRef }: CanvasProps) => { case 'mousedown': const clickCoordinates = getMappedCoordinates(event, canvasRef.current, width, height); if (getTextRef.current === true || getListRef.current === true) { + // todo: remove console.log and return console.log('get text or get list is true'); } else { socket.emit('input:mousedown', clickCoordinates);