File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
src/ui/pages/SendTransaction/TransactionAdvancedView Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ import { PageBottom } from 'src/ui/components/PageBottom';
2828import type { MultichainTransaction } from 'src/shared/types/MultichainTransaction' ;
2929import type { NetworkConfig } from 'src/modules/networks/NetworkConfig' ;
3030import { Networks } from 'src/modules/networks/Networks' ;
31+ import { RecipientLine } from 'src/ui/components/address-action/RecipientLine' ;
3132
3233function maybeHexValue ( value ?: BigNumberish | null ) : string | null {
3334 return value ? valueToHex ( value ) : null ;
@@ -228,7 +229,17 @@ export function TransactionAdvancedView({
228229 [ '--surface-background-color' as string ] : 'var(--neutral-100)' ,
229230 } }
230231 >
231- < ApplicationLine addressAction = { addressAction } network = { network } />
232+ { addressAction . label ?. wallet ? (
233+ < RecipientLine
234+ recipientAddress = { addressAction . label . wallet . address }
235+ recipientName = { addressAction . label . wallet . name || null }
236+ network = { network }
237+ showNetworkIcon = { true }
238+ />
239+ ) : null }
240+ { addressAction . label ?. contract ? (
241+ < ApplicationLine addressAction = { addressAction } network = { network } />
242+ ) : null }
232243 { transaction . evm ? (
233244 < TransactionDetails
234245 network = { network }
You can’t perform that action at this time.
0 commit comments