From 66f5eb57b909b964296deb142b87ec0279418865 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 21 Aug 2025 15:11:14 +0200 Subject: [PATCH] :bug: Fix incorrect fills coerce to binary type when flag is disabled (#7169) --- common/src/app/common/types/fills.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/app/common/types/fills.cljc b/common/src/app/common/types/fills.cljc index 910f476a69..6cc8746a2e 100644 --- a/common/src/app/common/types/fills.cljc +++ b/common/src/app/common/types/fills.cljc @@ -119,7 +119,7 @@ (c/assoc position fill))) (if (nil? fills) [fill] - (-> (coerce fills) + (-> fills (c/assoc position fill))))) (defn update