mirror of
https://github.com/penpot/penpot.git
synced 2025-02-22 23:06:08 -05:00
🐛 Fix problem with onboarding team invite (#5829)
Co-authored-by: Andrey Antukh <niwi@niwi.nz>
This commit is contained in:
parent
fb24a37e83
commit
51f924a5e1
2 changed files with 8 additions and 2 deletions
|
@ -62,6 +62,7 @@ is a number of cores)
|
|||
- Added upload svg with images method [#5489](https://github.com/penpot/penpot/issues/5489)
|
||||
- Fix problem with root frame parent reference [Taiga #9437](https://tree.taiga.io/project/penpot/issue/9437)
|
||||
- Fix change flex direction using plugins API [Taiga #9407](https://tree.taiga.io/project/penpot/issue/9407)
|
||||
- Fix problem with onboarding to a team [Taiga #10143](https://tree.taiga.io/project/penpot/issue/10143)
|
||||
- Fix problem with grid layout crashing [Taiga #10127](https://tree.taiga.io/project/penpot/issue/10127)
|
||||
|
||||
## 2.4.3
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
[app.main.data.event :as-alias ev]
|
||||
[app.main.data.notifications :as ntf]
|
||||
[app.main.data.profile :as du]
|
||||
[app.main.refs :as refs]
|
||||
[app.main.store :as st]
|
||||
[app.main.ui.icons :as i]
|
||||
[app.util.dom :as dom]
|
||||
|
@ -22,6 +23,7 @@
|
|||
(let [state* (mf/use-state #(do {:newsletter-updates false
|
||||
:newsletter-news false}))
|
||||
state (deref state*)
|
||||
team (mf/deref refs/team)
|
||||
|
||||
on-change
|
||||
(mf/use-fn
|
||||
|
@ -33,7 +35,7 @@
|
|||
|
||||
on-next
|
||||
(mf/use-fn
|
||||
(mf/deps state)
|
||||
(mf/deps state team)
|
||||
(fn []
|
||||
(when (or (:newsletter-updates state)
|
||||
(:newsletter-news state))
|
||||
|
@ -44,7 +46,10 @@
|
|||
(assoc :label "newsletter:subscriptions")
|
||||
(assoc :step 6))]
|
||||
(st/emit! (ptk/data-event ::ev/event params)
|
||||
(du/update-profile-props state)))))]
|
||||
(du/update-profile-props
|
||||
(cond-> state
|
||||
(not (:is-default team))
|
||||
(assoc :onboarding-viewed true)))))))]
|
||||
|
||||
[:div {:class (stl/css-case
|
||||
:modal-overlay true)}
|
||||
|
|
Loading…
Add table
Reference in a new issue