This commit is contained in:
parent
8d615801d1
commit
c19128e8b1
|
@ -15,19 +15,24 @@
|
||||||
|
|
||||||
(defn new-account
|
(defn new-account
|
||||||
[]
|
[]
|
||||||
|
(let [keycard? (rf/sub [:keycard/keycard-profile?])]
|
||||||
[quo/action-drawer
|
[quo/action-drawer
|
||||||
[[{:icon :i/add
|
[[{:icon :i/add
|
||||||
:accessibility-label :start-a-new-chat
|
:accessibility-label :start-a-new-chat
|
||||||
:label (i18n/label :t/add-account)
|
:label (i18n/label :t/add-account)
|
||||||
:sub-label (i18n/label :t/add-account-description)
|
:sub-label (i18n/label :t/add-account-description)
|
||||||
:on-press #(rf/dispatch [:navigate-to :screen/wallet.create-account])}
|
:on-press (fn []
|
||||||
|
(if keycard?
|
||||||
|
(rf/dispatch [:keycard/feature-unavailable-show
|
||||||
|
{:feature-name :wallet.new-account}])
|
||||||
|
(rf/dispatch [:navigate-to :screen/wallet.create-account])))}
|
||||||
(when (ff/enabled? ::ff/wallet.add-watched-address)
|
(when (ff/enabled? ::ff/wallet.add-watched-address)
|
||||||
{:icon :i/reveal
|
{:icon :i/reveal
|
||||||
:accessibility-label :add-a-contact
|
:accessibility-label :add-a-contact
|
||||||
:label (i18n/label :t/add-address-to-watch)
|
:label (i18n/label :t/add-address-to-watch)
|
||||||
:sub-label (i18n/label :t/add-address-to-watch-description)
|
:sub-label (i18n/label :t/add-address-to-watch-description)
|
||||||
:on-press #(rf/dispatch [:navigate-to :screen/wallet.add-address-to-watch])
|
:on-press #(rf/dispatch [:navigate-to :screen/wallet.add-address-to-watch])
|
||||||
:add-divider? true})]]])
|
:add-divider? true})]]]))
|
||||||
|
|
||||||
(defn- new-account-card-data
|
(defn- new-account-card-data
|
||||||
[]
|
[]
|
||||||
|
|
Loading…
Reference in New Issue