Commit cfd4c7e7 authored by tom's avatar tom

hide loader

parent b28ff3dc
...@@ -12,7 +12,7 @@ interface Props { ...@@ -12,7 +12,7 @@ interface Props {
const BlocksList = ({ data }: Props) => { const BlocksList = ({ data }: Props) => {
return ( return (
<Box mt={ 8 }> <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> </Box>
); );
}; };
......
...@@ -28,7 +28,7 @@ const BlocksTable = ({ data }: Props) => { ...@@ -28,7 +28,7 @@ const BlocksTable = ({ data }: Props) => {
</Tr> </Tr>
</Thead> </Thead>
<Tbody> <Tbody>
{ data.map((item, index) => <BlocksTableItem key={ item.height } data={ item } isPending={ index === 0 }/>) } { data.map((item) => <BlocksTableItem key={ item.height } data={ item }/>) }
</Tbody> </Tbody>
</Table> </Table>
</TableContainer> </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