diff --git a/common/src/app/common/types/shape/layout.cljc b/common/src/app/common/types/shape/layout.cljc index 7998b019fd..2259a12e63 100644 --- a/common/src/app/common/types/shape/layout.cljc +++ b/common/src/app/common/types/shape/layout.cljc @@ -1229,9 +1229,8 @@ (let [do-remap-cells (fn [cell] (-> cell - (update :shapes #(mapv ids-map %)))) + (update :shapes #(into [] (keep ids-map) %)))) shape (-> shape - (update :layout-grid-cells update-vals do-remap-cells) - (check-deassigned-cells))] + (update :layout-grid-cells update-vals do-remap-cells))] shape))