Skip to content

Commit

Permalink
fix type mismatch in e/Apply
Browse files Browse the repository at this point in the history
  • Loading branch information
leonoel committed Apr 10, 2024
1 parent 0f070b0 commit 46fed15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hyperfiddle/electric_de.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 46fed15

Please sign in to comment.