mirror of
https://github.com/penpot/penpot.git
synced 2025-06-09 03:31:41 +02:00
✨ Changed order of plugins initialization
This commit is contained in:
parent
c70d20f95d
commit
fb1429956a
3 changed files with 20 additions and 15 deletions
|
@ -105,8 +105,7 @@
|
|||
(rx/map deref)
|
||||
(rx/filter du/is-authenticated?)
|
||||
(rx/take 1)
|
||||
(rx/map #(ws/initialize))
|
||||
(rx/tap #(plugins/init!)))))))
|
||||
(rx/map #(ws/initialize)))))))
|
||||
|
||||
(defn ^:export init
|
||||
[]
|
||||
|
@ -116,7 +115,8 @@
|
|||
(cur/init-styles)
|
||||
(thr/init!)
|
||||
(init-ui)
|
||||
(st/emit! (initialize)))
|
||||
(st/emit! (plugins/initialize)
|
||||
(initialize)))
|
||||
|
||||
(defn ^:export reinit
|
||||
([]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue