Merge pull request #130 from tokens-studio/129-bug-file-is-crashing-post-applying-a-border-radius-token-to-a-shape

Fix non-optional keys breaking staging server
This commit is contained in:
Florian Schrödl
2024-05-23 11:05:12 +02:00
committed by GitHub

View File

@@ -86,7 +86,7 @@
(sm/def! ::opacity (sm/def! ::opacity
[:map [:map
[:opacity ::sm/uuid]]) [:opacity {:optional true} ::sm/uuid]])
(def opacity-keys (schema-keys ::opacity)) (def opacity-keys (schema-keys ::opacity))
@@ -114,7 +114,7 @@
(sm/def! ::rotation (sm/def! ::rotation
[:map [:map
[:rotation ::sm/uuid]]) [:rotation {:optional true} ::sm/uuid]])
(def rotation-keys (schema-keys ::rotation)) (def rotation-keys (schema-keys ::rotation))