From 95bf311c24e49e5f9ead78cbd3872552eb164d94 Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Tue, 2 Dec 2025 16:49:11 +0100 Subject: [PATCH] :bug: Fix race condition with text and type --- frontend/src/app/render_wasm/shape.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/render_wasm/shape.cljs b/frontend/src/app/render_wasm/shape.cljs index e182094bca..95513ed1a0 100644 --- a/frontend/src/app/render_wasm/shape.cljs +++ b/frontend/src/app/render_wasm/shape.cljs @@ -323,7 +323,7 @@ (rx/subs! #(api/request-render "set-wasm-attrs")))) ;; `conj` empty set initialization -(def conj* (fnil conj #{})) +(def conj* (fnil conj (d/ordered-set))) (defn- impl-assoc [self k v]