From ab2265d5053feda6acfc3cea31f00eadd0c7b3fb Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Wed, 28 Feb 2024 11:44:28 +0100 Subject: [PATCH] :bug: Fix problem when components are inside a boolean --- common/src/app/common/svg/path/shapes_to_path.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/app/common/svg/path/shapes_to_path.cljc b/common/src/app/common/svg/path/shapes_to_path.cljc index 0c3174a3e..16ab66529 100644 --- a/common/src/app/common/svg/path/shapes_to_path.cljc +++ b/common/src/app/common/svg/path/shapes_to_path.cljc @@ -211,7 +211,7 @@ ([{:keys [type metadata] :as shape} objects] (assert (map? objects)) (case type - :group + (:group :frame) (group-to-path shape objects) :bool