mirror of
https://github.com/penpot/penpot.git
synced 2025-12-11 22:14:05 +01:00
🐛 Fix incorrect params handling on exporter
that caused unexpected exception on multiple exports
This commit is contained in:
@@ -141,8 +141,8 @@
|
||||
|
||||
proc (-> (p/do
|
||||
(p/loop [exports (seq exports)]
|
||||
(when-let [export (-> (first exports)
|
||||
(assoc :skip-children skip-children))]
|
||||
(when-let [export (some-> (first exports)
|
||||
(assoc :skip-children skip-children))]
|
||||
(p/do
|
||||
(rd/render export append)
|
||||
(p/recur (rest exports)))))
|
||||
|
||||
Reference in New Issue
Block a user