0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-04 19:11:20 -05:00

📎 Use proper catch matching on tokens drop operation

This commit is contained in:
Andrey Antukh 2025-03-14 11:53:25 +01:00
parent 559dcabf0e
commit 1965490bee

View file

@ -254,7 +254,7 @@
(rx/of
(dch/commit-changes changes)
(wtu/update-workspace-tokens)))
(catch js/Error e
(catch :default e
(rx/of
(drop-error (ex-data e))))))))
@ -266,7 +266,7 @@
(when-let [changes (clt/generate-move-token-set (pcb/empty-changes it) (get-tokens-lib state) drop-opts)]
(rx/of (dch/commit-changes changes)
(wtu/update-workspace-tokens)))
(catch js/Error e
(catch :default e
(rx/of
(drop-error (ex-data e))))))))