diff --git a/src/app/components/BlockList/index.tsx b/src/app/components/BlockList/index.tsx index 7389a83f7..18f0f430e 100644 --- a/src/app/components/BlockList/index.tsx +++ b/src/app/components/BlockList/index.tsx @@ -19,6 +19,7 @@ import { useGlobalContext } from '@/common/context/useAppContext'; import { AnimatedBlockAndMicroblocksItem } from '@/app/components/BlockList/AnimatedBlockAndMicroblocksItem'; import { EnhancedBlock } from '@/app/components/BlockList/types'; import { DEFAULT_LIST_LIMIT } from '@/common/constants'; +import { BlockAndMicroblocksItem } from '@/app/components/BlockList/BlockAndMicroblocksItem'; const BlocksListBase: React.FC<{ limit?: number; @@ -97,21 +98,27 @@ const BlocksListBase: React.FC<{ } > - {allBlocks?.map(block => ( - removeOldBlock(block)} - /> - ))} + {allBlocks?.map(block => + isLive ? ( + removeOldBlock(block)} + /> + ) : ( + + ) + )} - + {!isLive && ( + + )} ); };