Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6e62846

Browse files
committedMar 24, 2024··
cleanup
1 parent e1d618e commit 6e62846

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed
 

‎src/status_im/contexts/communities/actions/accounts_selection/view.cljs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
(ns status-im.contexts.communities.actions.accounts-selection.view
22
(:require
33
[quo.core :as quo]
4+
[quo.theme :as quo.theme]
45
[react-native.core :as rn]
56
[react-native.gesture :as gesture]
67
[status-im.contexts.communities.actions.accounts-selection.style :as style]
@@ -53,7 +54,8 @@
5354
(fn []
5455
(rf/dispatch
5556
[:standard-auth/authorize
56-
{:auth-button-label (if can-edit-addresses?
57+
{:theme (quo.theme/use-theme-value)
58+
:auth-button-label (if can-edit-addresses?
5759
(i18n/label :t/edit-shared-addresses)
5860
(i18n/label :t/request-to-join))
5961
:on-auth-success (fn [password]

‎src/status_im/contexts/communities/actions/addresses_for_permissions/view.cljs

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
(:require
33
[clojure.string :as string]
44
[quo.core :as quo]
5+
[quo.theme :as quo.theme]
56
[react-native.core :as rn]
67
[react-native.gesture :as gesture]
78
[status-im.constants :as constants]
@@ -252,6 +253,7 @@
252253
(rf/dispatch
253254
[:standard-auth/authorize
254255
{:auth-button-label (i18n/label :t/confirm-changes)
256+
:theme (quo.theme/use-theme-value)
255257
:on-auth-success (fn [password]
256258
(rf/dispatch
257259
[:communities/edit-shared-addresses

‎src/status_im/contexts/communities/actions/airdrop_addresses/view.cljs

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
(ns status-im.contexts.communities.actions.airdrop-addresses.view
22
(:require
33
[quo.core :as quo]
4+
[quo.theme :as quo.theme]
45
[react-native.core :as rn]
56
[react-native.gesture :as gesture]
67
[status-im.common.not-implemented :as not-implemented]
@@ -22,6 +23,7 @@
2223
(rf/dispatch
2324
[:standard-auth/authorize
2425
{:auth-button-label (i18n/label :t/confirm-changes)
26+
:theme (quo.theme/use-theme-value)
2527
:on-auth-success (fn [password]
2628
(rf/dispatch
2729
[:communities/edit-shared-addresses

‎src/status_im/contexts/communities/actions/request_to_join/view.cljs

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
(rf/dispatch
1818
[:standard-auth/authorize
1919
{:auth-button-label (i18n/label :t/request-to-join)
20+
:theme (quo.theme/use-theme-value)
2021
:on-auth-success (fn [password]
2122
(rf/dispatch
2223
[:communities/request-to-join

0 commit comments

Comments
 (0)
Please sign in to comment.