From 630f42f7ac53bbc7720283217970c80acce4ca2c Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Thu, 5 Dec 2024 09:30:10 +0100 Subject: [PATCH] :bug: Fix internal error when creating a guide --- common/src/app/common/types/page.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/app/common/types/page.cljc b/common/src/app/common/types/page.cljc index 6a03e3a49..8c57f3309 100644 --- a/common/src/app/common/types/page.cljc +++ b/common/src/app/common/types/page.cljc @@ -33,7 +33,7 @@ [:id ::sm/uuid] [:axis [::sm/one-of #{:x :y}]] [:position ::sm/safe-number] - [:frame-id {:optional true} ::sm/uuid]]) + [:frame-id {:optional true} [:maybe ::sm/uuid]]]) (def schema:guides [:map-of {:gen/max 2} ::sm/uuid schema:guide])