From 2d0a5c77dfc1a34b0c7782fe93a975e911da08f7 Mon Sep 17 00:00:00 2001 From: Ambrose Bonnaire-Sergeant Date: Fri, 19 Jul 2024 00:19:55 -0500 Subject: [PATCH] fix --- src/malli/poly2.cljc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/malli/poly2.cljc b/src/malli/poly2.cljc index d134c4ff7..be1c4bfee 100644 --- a/src/malli/poly2.cljc +++ b/src/malli/poly2.cljc @@ -28,10 +28,10 @@ (-> (m/ast options) (update :registry #(not-empty (into {} (map (fn [[k ast]] - (-> ast - (m/from-ast options) - (m/-walk this (conj path :registry k) options) - (m/ast options)))) + [k (-> ast + (m/from-ast options) + (m/-walk this (conj path :registry k) options) + (m/ast options))])) %))) (m/from-ast options)))] (m/-walk s this path options)))