From dd35e2b577698e72fef41445cf18b2470a0953d8 Mon Sep 17 00:00:00 2001 From: Joeri Exelmans Date: Sun, 11 May 2025 00:30:03 +0200 Subject: [PATCH] fix --- lib/primitives/dynamic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/primitives/dynamic.js b/lib/primitives/dynamic.js index 3ef2769..7f6582e 100644 --- a/lib/primitives/dynamic.js +++ b/lib/primitives/dynamic.js @@ -22,5 +22,5 @@ export const apply = input => fun => { const funValue = getInst(fun); const outputValue = funValue(inputValue); - return newDynamic(outputValue, outputType); + return newDynamic(outputValue)(outputType); };