mirror of
https://github.com/status-im/status-react.git
synced 2025-02-21 07:08:44 +00:00
fix: hide "Amount received" on collectible confirmation
This commit is contained in:
parent
3001fa91e9
commit
c02d97d380
@ -68,7 +68,8 @@
|
||||
(defn- transaction-details
|
||||
[]
|
||||
(let [route-loaded? (seq (rf/sub [:wallet/send-route]))
|
||||
loading-suggested-routes? (rf/sub [:wallet/wallet-send-loading-suggested-routes?])]
|
||||
loading-suggested-routes? (rf/sub [:wallet/wallet-send-loading-suggested-routes?])
|
||||
sending-collectible? (rf/sub [:wallet/sending-collectible?])]
|
||||
[rn/view
|
||||
{:style (style/details-container
|
||||
{:loading-suggested-routes? loading-suggested-routes?
|
||||
@ -81,7 +82,8 @@
|
||||
[:<>
|
||||
[estimated-time-view]
|
||||
[max-fees-view]
|
||||
[received-amount-view]]
|
||||
(when-not sending-collectible?
|
||||
[received-amount-view])]
|
||||
|
||||
:else
|
||||
[quo/text {:style {:align-self :center}}
|
||||
|
Loading…
x
Reference in New Issue
Block a user