From ad73c449fd9f18e2733cdb17e59bafa9649acd4d Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 25 Aug 2023 11:04:02 +0200 Subject: [PATCH] :sparkles: Replace mapv with map on get-frame-ids fn --- common/src/app/common/types/shape_tree.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/app/common/types/shape_tree.cljc b/common/src/app/common/types/shape_tree.cljc index d06291e3be..1e9d449a59 100644 --- a/common/src/app/common/types/shape_tree.cljc +++ b/common/src/app/common/types/shape_tree.cljc @@ -132,7 +132,7 @@ ([objects] (get-frames-ids objects nil)) ([objects options] (->> (get-frames objects options) - (mapv :id)))) + (map :id)))) (defn get-nested-frames [objects frame-id]