Skip to content

Commit

Permalink
chore: fixed blocks page grouped 1st btc block
Browse files Browse the repository at this point in the history
  • Loading branch information
BLuEScioN committed Jul 31, 2024
1 parent 367dac9 commit 289c2e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/_components/BlockList/BlockCount.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const BlockCount = memo(function ({
>
+{count} {pluralize('block', count)}
<Circle size={4.5} bg="surface">
<Icon as={ArrowUpRight} size={2.5} color={isFirst ? "text" : iconColor} />
<Icon as={ArrowUpRight} size={2.5} color={isFirst ? 'text' : iconColor} />
</Circle>
</Text>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export function useBlocksGroupedInitialBlockList(blockListLimit: number) {
const btcBlocksMap = useBtcBlocksMap(btcBlocks);

const latestBurnBlockStxBlocks = useSuspenseInfiniteQueryResult(
useSuspenseBlocksByBurnBlock(latestBurnBlock.burn_block_height, 10, {}, 'blocks-page')
useSuspenseBlocksByBurnBlock(latestBurnBlock.burn_block_height, undefined, {}, 'blocks-page')
);

const initialStxBlockHashes = useMemo(() => {
Expand Down

0 comments on commit 289c2e5

Please sign in to comment.