From 8f55269522e600db20d69940c4ef76d0d9c65c09 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 3 Jun 2025 12:54:18 +0200 Subject: [PATCH] :bug: Remove unknown types from stroke style schema --- common/src/app/common/types/shape.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/app/common/types/shape.cljc b/common/src/app/common/types/shape.cljc index f015751c02..41d54c6ecc 100644 --- a/common/src/app/common/types/shape.cljc +++ b/common/src/app/common/types/shape.cljc @@ -140,7 +140,7 @@ [:stroke-color-ref-id {:optional true} ::sm/uuid] [:stroke-opacity {:optional true} ::sm/safe-number] [:stroke-style {:optional true} - [::sm/one-of #{:solid :dotted :dashed :mixed :none :svg}]] + [::sm/one-of #{:solid :dotted :dashed :mixed}]] [:stroke-width {:optional true} ::sm/safe-number] [:stroke-alignment {:optional true} [::sm/one-of #{:center :inner :outer}]]