📎 Fix linter issues on frontend

This commit is contained in:
Andrey Antukh 2026-08-27 11:08:55 +02:00
parent 217284b1e1
commit 46fdec5c0f

View File

@ -884,10 +884,10 @@
(cond
(nil? parent) []
(cfh/group-shape? parent) (let [fills (svg-fills/resolve-shape-fills parent)]
(if (seq fills)
fills
(recur (:parent-id parent)
(conj visited parent-id))))
(if (seq fills)
fills
(recur (:parent-id parent)
(conj visited parent-id))))
(cfh/frame-shape? parent) []
:else (recur (:parent-id parent)
(conj visited parent-id)))))))))