File tree Expand file tree Collapse file tree
packages/wallet-sdk/examples/demo-app/src/wallet/components/signing/transaction Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -89,9 +89,7 @@ export function CommandsTab({ analysis }: CommandsTabProps) {
8989 </ span >
9090 < span className = "text-gray-600" > object(s) to </ span >
9191 < span className = "font-mono" >
92- { cmd . $kind === 'TransferObjects'
93- ? formatArgument ( cmd . address )
94- : 'Unknown' }
92+ { cmd . $kind === 'TransferObjects' ? formatArgument ( cmd . address ) : 'Unknown' }
9593 </ span >
9694 </ div >
9795 ) ;
Original file line number Diff line number Diff line change @@ -71,7 +71,8 @@ export function InputsTab({ analysis }: InputsTabProps) {
7171 </ div >
7272 ) ;
7373 } else if ( input . $kind === 'Object' ) {
74- const objId = ( input . object as any ) . data ?. objectId || ( input . object as any ) . objectId || 'unknown' ;
74+ const objId =
75+ ( input . object as any ) . data ?. objectId || ( input . object as any ) . objectId || 'unknown' ;
7576 const obj = input . object ;
7677 const access = input . accessLevel ;
7778 const coin = coins [ objId ] ;
You can’t perform that action at this time.
0 commit comments