From 2800f555c7bd7663987c77ab0fced778d683722e Mon Sep 17 00:00:00 2001 From: Ashish Jain Date: Fri, 19 Jul 2024 14:12:19 +0200 Subject: [PATCH] fix lint issue --- packages/mermaid-layout-elk/src/render.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/mermaid-layout-elk/src/render.ts b/packages/mermaid-layout-elk/src/render.ts index 311c359d6..d2fdb6c09 100644 --- a/packages/mermaid-layout-elk/src/render.ts +++ b/packages/mermaid-layout-elk/src/render.ts @@ -925,7 +925,6 @@ export const intersection = (node, outsidePoint, insidePoint) => { } }; const outsideNode = (node, point) => { - console.log('Checking bounds ', node, point); const x = node.x; const y = node.y; const dx = Math.abs(point.x - x);