We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5007dc7 commit c1b0f3aCopy full SHA for c1b0f3a
src/status_im/contexts/wallet/send/input_amount/view.cljs
@@ -22,7 +22,9 @@
22
23
(defn select-asset-bottom-sheet
24
[clear-input!]
25
- (let [{preselected-token-symbol :symbol} (rf/sub [:wallet/wallet-send-token])]
+ (let [{preselected-token-symbol :symbol} (rf/sub [:wallet/wallet-send-token])
26
+ network (rf/sub [:wallet/send-network])
27
+ chain-id (:chain-id network)]
28
[:<> ;; Need to be a `:<>` to keep `asset-list` scrollable.
29
[quo/drawer-top
30
{:title (i18n/label :t/select-token)
@@ -31,6 +33,7 @@
31
33
{:content-container-style {:padding-horizontal 8
32
34
:padding-bottom 8}
35
:preselected-token-symbol preselected-token-symbol
36
+ :chain-ids [chain-id]
37
:on-token-press (fn [token]
38
(rf/dispatch [:wallet/edit-token-to-send token])
39
(clear-input!))}]]))
0 commit comments