diff --git a/frontend/src/app/render_wasm/api.cljs b/frontend/src/app/render_wasm/api.cljs index 24f5481cd..acac75437 100644 --- a/frontend/src/app/render_wasm/api.cljs +++ b/frontend/src/app/render_wasm/api.cljs @@ -253,7 +253,8 @@ selrect (dm/get-prop shape :selrect) rotation (dm/get-prop shape :rotation) transform (dm/get-prop shape :transform) - fills (dm/get-prop shape :fills) + fills (if (= type :group) + [] (dm/get-prop shape :fills)) children (dm/get-prop shape :shapes) blend-mode (dm/get-prop shape :blend-mode) opacity (dm/get-prop shape :opacity) diff --git a/frontend/src/app/render_wasm/shape.cljs b/frontend/src/app/render_wasm/shape.cljs index 3a2909669..2eb61b6db 100644 --- a/frontend/src/app/render_wasm/shape.cljs +++ b/frontend/src/app/render_wasm/shape.cljs @@ -8,9 +8,7 @@ (:require [app.common.transit :as t] [app.common.types.shape :as shape] - ;; [app.common.svg.path :as path] [app.render-wasm.api :as api] - [app.render-wasm.path :as path] [clojure.core :as c] [cuerdas.core :as str]))