Commit cfd4c7e7 authored by tom's avatar tom

hide loader

parent b28ff3dc
......@@ -12,7 +12,7 @@ interface Props {
const BlocksList = ({ data }: Props) => {
return (
<Box mt={ 8 }>
{ data.map((item, index) => <BlocksListItem key={ item.height } data={ item } isPending={ index === 0 }/>) }
{ data.map((item) => <BlocksListItem key={ item.height } data={ item }/>) }
</Box>
);
};
......
......@@ -28,7 +28,7 @@ const BlocksTable = ({ data }: Props) => {
</Tr>
</Thead>
<Tbody>
{ data.map((item, index) => <BlocksTableItem key={ item.height } data={ item } isPending={ index === 0 }/>) }
{ data.map((item) => <BlocksTableItem key={ item.height } data={ item }/>) }
</Tbody>
</Table>
</TableContainer>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment