Prettier + close button
This commit is contained in:
committed by
Jacob Evans
parent
43ad27931c
commit
b7fcc70cd9
@@ -60,7 +60,14 @@ export class AddressTable extends React.Component<AddressTableProps, AddressTabl
|
||||
const balanceInEth = Web3Wrapper.toUnitAmount(balanceInWei, constants.DECIMAL_PLACES_ETH);
|
||||
const balanceString = `${balanceInEth.toString()} ${isKovanNetwork ? 'Kovan ' : ''}ZRX`;
|
||||
return (
|
||||
<AddressTableRow key={addressRowId} address={userAddress} balance={balanceString} isActive={selectedAddressIndex === i} value={i} onSelectAddress={this._onSelectAddress.bind(this)} />
|
||||
<AddressTableRow
|
||||
key={addressRowId}
|
||||
address={userAddress}
|
||||
balance={balanceString}
|
||||
isActive={selectedAddressIndex === i}
|
||||
value={i}
|
||||
onSelectAddress={this._onSelectAddress.bind(this)}
|
||||
/>
|
||||
);
|
||||
});
|
||||
return rows;
|
||||
|
Reference in New Issue
Block a user