diff --git a/src/views/latestBlocks/index.tsx b/src/views/latestBlocks/index.tsx index dbd89dca..b2b4e9f3 100644 --- a/src/views/latestBlocks/index.tsx +++ b/src/views/latestBlocks/index.tsx @@ -77,7 +77,8 @@ const LatestBlocks = () => { { header: 'Validator', cell: ({ row }) => { - return truncateAddress(row.original.identity!.address.toString() || '', 6); + // IF THE BLOCK IS NOT PINNED (ITS A WRONG FORK) THE IDENTITY WOULD BE "UNDEFINED" + return truncateAddress(row.original.identity?.address?.toString?.() || '', 6); }, }, {