From 520ea0e0945c685152c90d0c3ef05f93d87449b9 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 20 Jun 2025 08:01:59 +0200 Subject: [PATCH] :fire: Remove incorrect assert on path segment helper --- common/src/app/common/types/path/segment.cljc | 2 -- 1 file changed, 2 deletions(-) diff --git a/common/src/app/common/types/path/segment.cljc b/common/src/app/common/types/path/segment.cljc index 4f599f87ca..fbe90b7c92 100644 --- a/common/src/app/common/types/path/segment.cljc +++ b/common/src/app/common/types/path/segment.cljc @@ -470,8 +470,6 @@ "Given a content and a set of points return all the segments in the path that uses the points" [content points] - (assert (impl/path-data? content) "expected path data instance") - (let [point-set (set points)] (loop [result (transient []) prev-point nil