Merge remote-tracking branch 'origin/bugfixes' into develop

This commit is contained in:
Andrey Antukh 2021-04-13 14:14:03 +02:00
commit bfbc715977
14 changed files with 99 additions and 89 deletions

View file

@ -44,10 +44,10 @@
(watch [this state stream]
(let [team-id (current-team-id profile)
props (:props profile)]
(rx/merge
(rx/of (du/profile-fetched profile)
(rt/nav' :dashboard-projects {:team-id team-id}))
(rx/concat
(rx/of (du/profile-fetched profile))
(rx/of (du/fetch-teams))
(rx/of (rt/nav' :dashboard-projects {:team-id team-id}))
(when-not (:onboarding-viewed props)
(->> (rx/of (modal/show {:type :onboarding}))
(rx/delay 1000))))))))