mirror of
https://github.com/penpot/penpot.git
synced 2025-01-24 15:39:50 -05:00
Merge pull request #5033 from penpot/superalex-revert-test-default-theme
Revert "🎉 Test A/B for starting with light theme"
This commit is contained in:
commit
bf60bf1848
3 changed files with 3 additions and 12 deletions
|
@ -19,7 +19,6 @@
|
|||
[app.main.data.websocket :as ws]
|
||||
[app.main.features :as features]
|
||||
[app.main.repo :as rp]
|
||||
[app.util.dom :as dom]
|
||||
[app.util.i18n :as i18n :refer [tr]]
|
||||
[app.util.router :as rt]
|
||||
[app.util.storage :refer [storage]]
|
||||
|
@ -136,8 +135,7 @@
|
|||
(swap! storage assoc :profile profile)
|
||||
(i18n/set-locale! (:lang profile))
|
||||
(when (not= previous-email email)
|
||||
(set-current-team! nil))
|
||||
(dom/set-html-theme-color (or (:theme profile) "default")))))))
|
||||
(set-current-team! nil)))))))
|
||||
|
||||
(defn fetch-profile
|
||||
[]
|
||||
|
|
|
@ -48,16 +48,11 @@
|
|||
(not= section :auth-register-validate)
|
||||
(not= section :auth-register-success))
|
||||
params (:query-params route)
|
||||
error (:error params)
|
||||
default-light? (cf/external-feature-flag "onboarding-02" "test")]
|
||||
error (:error params)]
|
||||
|
||||
(mf/with-effect []
|
||||
(dom/set-html-title (tr "title.default")))
|
||||
|
||||
(mf/with-effect [default-light?]
|
||||
(when default-light?
|
||||
(dom/set-html-theme-color "light")))
|
||||
|
||||
(mf/with-effect [error]
|
||||
(when error
|
||||
(st/emit! (du/show-redirect-error error))))
|
||||
|
|
|
@ -228,7 +228,6 @@
|
|||
:initial params)
|
||||
|
||||
submitted? (mf/use-state false)
|
||||
theme (when (cf/external-feature-flag "onboarding-02" "test") "light")
|
||||
|
||||
on-success
|
||||
(mf/use-fn
|
||||
|
@ -247,8 +246,7 @@
|
|||
(mf/use-fn
|
||||
(fn [form _]
|
||||
(reset! submitted? true)
|
||||
(let [params (cond-> (:clean-data @form)
|
||||
(some? theme) (assoc :theme theme))]
|
||||
(let [params (:clean-data @form)]
|
||||
(->> (rp/cmd! :register-profile params)
|
||||
(rx/finalize #(reset! submitted? false))
|
||||
(rx/subs! on-success on-error)))))]
|
||||
|
|
Loading…
Add table
Reference in a new issue