0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-21 22:22:43 -05:00

Fix non-optional keys breaking staging server

This commit is contained in:
Florian Schroedl 2024-05-23 10:53:18 +02:00
parent 2818d097ab
commit 80ff7f769c

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))