We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2378cc commit 31f5dd7Copy full SHA for 31f5dd7
src/status_im/contexts/communities/actions/request_to_join/view.cljs
@@ -11,11 +11,10 @@
11
[utils.re-frame :as rf]))
12
13
(defn join-community-and-navigate-back
14
- [id theme]
+ [id]
15
(rf/dispatch
16
[:standard-auth/authorize
17
{:auth-button-label (i18n/label :t/request-to-join)
18
- :theme theme
19
:on-auth-success (fn [password]
20
21
[:communities/request-to-join
@@ -59,7 +58,7 @@
59
58
(i18n/label :t/cancel)]
60
[quo/button
61
{:accessibility-label :join-community-button
62
- :on-press #(join-community-and-navigate-back id theme)
+ :on-press #(join-community-and-navigate-back id)
63
:container-style {:flex 1}
64
:inner-style {:background-color (colors/resolve-color color theme)}}
65
(i18n/label :t/request-to-join)]]
0 commit comments