Skip to content

Commit baf58f0

Browse files
committed
fix: move latest btc finalized section left
1 parent 6ba3492 commit baf58f0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/app/components/Stats/Stats.tsx

+6-6
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ export const Stats: React.FC<StatsProps> = ({ chainSyncStatus }) => {
2020
icon: blockIcon,
2121
tooltip: "Latest L2 block number",
2222
},
23+
{
24+
title: "Latest BTC Finalized",
25+
value: chainSyncStatus?.latest_btc_finalized_block,
26+
icon: blockIcon,
27+
tooltip: "Latest BTC finalized L2 block number",
28+
},
2329
{
2430
title: "ETH Finalized",
2531
value: chainSyncStatus?.latest_eth_finalized_block,
@@ -32,12 +38,6 @@ export const Stats: React.FC<StatsProps> = ({ chainSyncStatus }) => {
3238
icon: blockIcon,
3339
tooltip: "Earliest consecutively BTC finalized L2 block number",
3440
},
35-
{
36-
title: "Latest BTC Finalized",
37-
value: chainSyncStatus?.latest_btc_finalized_block,
38-
icon: blockIcon,
39-
tooltip: "Latest BTC finalized L2 block number",
40-
},
4141
],
4242
];
4343

0 commit comments

Comments
 (0)