diff --git a/src/components/shared/AddrContractsBalRow.js b/src/components/shared/AddrContractsBalRow.js index 8b297f32..b4541567 100644 --- a/src/components/shared/AddrContractsBalRow.js +++ b/src/components/shared/AddrContractsBalRow.js @@ -200,32 +200,34 @@ function AddContractsBal(props) { ICX

+
{unstakeList && unstakeList.length !== 0 ? unstakeList.map((dataList) => { - return ( -

- - - Target Block Height{' '} - {convertNumberToText( - IconConverter.toNumber( - dataList.unstakeBlockHeight - ) - )} - - - {convertNumberToText( - convertLoopToIcxDecimal(dataList.unstake) - )} - - ICX - -

- ) - }) + return ( +

+ + + Target Block Height{' '} + {convertNumberToText( + IconConverter.toNumber( + dataList.unstakeBlockHeight + ) + )} + + + {convertNumberToText( + convertLoopToIcxDecimal(dataList.unstake) + )} + + ICX + +

+ ) + }) : ''}
+

Voted