From 8d1906f56e02dfa9be5739710bd541151182a0e9 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 9 Apr 2026 13:59:42 +0000 Subject: [PATCH] :bug: Fix ^:cosnt typo to ^:const on bool-group-style-properties The metadata key was misspelled as :cosnt instead of :const, preventing the compiler from recognizing the Var as a compile-time constant. --- common/src/app/common/types/path.cljc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/src/app/common/types/path.cljc b/common/src/app/common/types/path.cljc index 757b9f1e95..f3b7c635ab 100644 --- a/common/src/app/common/types/path.cljc +++ b/common/src/app/common/types/path.cljc @@ -23,7 +23,7 @@ #?(:clj (set! *warn-on-reflection* true)) -(def ^:cosnt bool-group-style-properties bool/group-style-properties) +(def ^:const bool-group-style-properties bool/group-style-properties) (def ^:const bool-style-properties bool/style-properties) (defn get-default-bool-fills @@ -79,7 +79,7 @@ (defn close-subpaths "Given a content, searches a path for possible subpaths that can create closed loops and merge them; then return the transformed path - conten as PathData instance" + content as PathData instance" [content] (-> (subpath/close-subpaths content) (impl/from-plain)))