File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed
governance/xc_admin/packages/xc_admin_frontend/components/tabs Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -462,17 +462,14 @@ const Proposal = ({
462
462
{ currentProposal . approved . map ( ( pubkey , idx ) => (
463
463
< >
464
464
< div className = "flex justify-between" key = { pubkey . toBase58 ( ) } >
465
- < div > Key { idx + 1 } </ div >
465
+ < div >
466
+ Key { idx + 1 } { ' ' }
467
+ { pubkey . toBase58 ( ) in multisigSignerKeyToNameMapping
468
+ ? `(${ multisigSignerKeyToNameMapping [ pubkey . toBase58 ( ) ] } )`
469
+ : null }
470
+ </ div >
466
471
< CopyPubkey pubkey = { pubkey . toBase58 ( ) } />
467
472
</ div >
468
- { pubkey . toBase58 ( ) in multisigSignerKeyToNameMapping ? (
469
- < ParsedAccountPubkeyRow
470
- key = { `${ idx } _${ pubkey . toBase58 ( ) } _confirmed` }
471
- mapping = { multisigSignerKeyToNameMapping }
472
- title = "owner"
473
- pubkey = { pubkey . toBase58 ( ) }
474
- />
475
- ) : null }
476
473
</ >
477
474
) ) }
478
475
</ div >
You can’t perform that action at this time.
0 commit comments