From 46fed15429f46ee34fc98818c3cd64bcff2e29d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20NOEL?= Date: Wed, 10 Apr 2024 14:22:10 +0200 Subject: [PATCH] fix type mismatch in e/Apply --- src/hyperfiddle/electric_de.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hyperfiddle/electric_de.cljc b/src/hyperfiddle/electric_de.cljc index 0deb375e3..9605df4a9 100644 --- a/src/hyperfiddle/electric_de.cljc +++ b/src/hyperfiddle/electric_de.cljc @@ -222,7 +222,7 @@ this tuple. Returns the concatenation of all body results as a single vector. (if (< fixed offset) (loop [args args static static] - (let [args (cons (::lang/join (peek static)) args) + (let [args (cons (::lang/join (r/incseq (frame) (peek static))) args) static (pop static)] (if (< fixed (count static)) (recur args static)