From c228b400b23b6d580cd1f35e0d40bb3209d0fd99 Mon Sep 17 00:00:00 2001 From: Gavin Nishizawa Date: Thu, 28 Sep 2023 13:28:56 -0700 Subject: [PATCH] disable compiler validation --- d2compiler/compile.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/d2compiler/compile.go b/d2compiler/compile.go index 0675ebf34..d0db74912 100644 --- a/d2compiler/compile.go +++ b/d2compiler/compile.go @@ -1137,8 +1137,8 @@ func (c *compiler) validateEdges(g *d2graph.Graph) { } if srcCell != dstCell && (!srcIsGridCell || !dstIsGridCell) { - c.errorf(edge.GetAstEdge(), "edge cannot exit grid cell %#v", srcCell.AbsID()) - continue + // c.errorf(edge.GetAstEdge(), "edge cannot exit grid cell %#v", srcCell.AbsID()) + // continue } }