mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 08:50:57 -05:00
🐛 Fix wrong arity call on dashboard data ns.
This commit is contained in:
parent
f5e277269c
commit
894cf3f0ed
1 changed files with 3 additions and 3 deletions
|
@ -88,7 +88,7 @@
|
||||||
(watch [_ state stream]
|
(watch [_ state stream]
|
||||||
(let [local (:dashboard-local state)]
|
(let [local (:dashboard-local state)]
|
||||||
(rx/of (fetch-files (:project-id local))
|
(rx/of (fetch-files (:project-id local))
|
||||||
(fetch-projects (:team-id local)))))))
|
(fetch-projects (:team-id local) nil))))))
|
||||||
|
|
||||||
|
|
||||||
(defn initialize-recent
|
(defn initialize-recent
|
||||||
|
@ -104,7 +104,7 @@
|
||||||
ptk/WatchEvent
|
ptk/WatchEvent
|
||||||
(watch [_ state stream]
|
(watch [_ state stream]
|
||||||
(let [local (:dashboard-local state)]
|
(let [local (:dashboard-local state)]
|
||||||
(rx/of (fetch-projects (:team-id local))
|
(rx/of (fetch-projects (:team-id local) nil)
|
||||||
(fetch-recent-files (:team-id local)))))))
|
(fetch-recent-files (:team-id local)))))))
|
||||||
|
|
||||||
|
|
||||||
|
@ -122,7 +122,7 @@
|
||||||
ptk/WatchEvent
|
ptk/WatchEvent
|
||||||
(watch [_ state stream]
|
(watch [_ state stream]
|
||||||
(let [local (:dashboard-local state)]
|
(let [local (:dashboard-local state)]
|
||||||
(rx/of (fetch-projects (:team-id local))
|
(rx/of (fetch-projects (:team-id local) nil)
|
||||||
(fetch-files (:project-id local)))))))
|
(fetch-files (:project-id local)))))))
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
Loading…
Reference in a new issue