diff --git a/frontend/src/app/main/data/users.cljs b/frontend/src/app/main/data/users.cljs index 1c44bf4a8..4f970cfec 100644 --- a/frontend/src/app/main/data/users.cljs +++ b/frontend/src/app/main/data/users.cljs @@ -395,7 +395,7 @@ ;; TODO: for the release 1.13 we should skip fetching profile and just use ;; the response value of update-profile-props RPC call ptk/WatchEvent - (watch [_ state _] + (watch [_ _ _] (->> (rp/mutation :update-profile-props {:props props}) (rx/map (constantly (fetch-profile))))))) diff --git a/frontend/src/app/main/data/workspace.cljs b/frontend/src/app/main/data/workspace.cljs index 7e683ebd1..59bc76e2e 100644 --- a/frontend/src/app/main/data/workspace.cljs +++ b/frontend/src/app/main/data/workspace.cljs @@ -423,8 +423,7 @@ [flag] (ptk/reify ::toggle-layout-flag IDeref - (-deref [this] - {:name flag}) + (-deref [_] {:name flag}) ptk/UpdateEvent (update [_ state] diff --git a/frontend/src/app/main/ui/releases.cljs b/frontend/src/app/main/ui/releases.cljs index c478f05db..8e5632320 100644 --- a/frontend/src/app/main/ui/releases.cljs +++ b/frontend/src/app/main/ui/releases.cljs @@ -10,9 +10,9 @@ [app.main.data.users :as du] [app.main.store :as st] [app.main.ui.releases.common :as rc] - [app.main.ui.releases.v1-12] - [app.main.ui.releases.v1-11] [app.main.ui.releases.v1-10] + [app.main.ui.releases.v1-11] + [app.main.ui.releases.v1-12] [app.main.ui.releases.v1-4] [app.main.ui.releases.v1-5] [app.main.ui.releases.v1-6]