Skip to content

Commit

Permalink
fix: move latest btc finalized section left (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
bap2pecs authored Nov 30, 2024
1 parent 3ea3cc3 commit 7dfdc59
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/app/components/Stats/Stats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ export const Stats: React.FC<StatsProps> = ({ chainSyncStatus }) => {
icon: blockIcon,
tooltip: "Latest L2 block number",
},
{
title: "Latest BTC Finalized",
value: chainSyncStatus?.latest_btc_finalized_block,
icon: blockIcon,
tooltip: "Latest BTC finalized L2 block number",
},
{
title: "ETH Finalized",
value: chainSyncStatus?.latest_eth_finalized_block,
Expand All @@ -32,12 +38,6 @@ export const Stats: React.FC<StatsProps> = ({ chainSyncStatus }) => {
icon: blockIcon,
tooltip: "Earliest consecutively BTC finalized L2 block number",
},
{
title: "Latest BTC Finalized",
value: chainSyncStatus?.latest_btc_finalized_block,
icon: blockIcon,
tooltip: "Latest BTC finalized L2 block number",
},
],
];

Expand Down

0 comments on commit 7dfdc59

Please sign in to comment.