File tree Expand file tree Collapse file tree 2 files changed +9
-34
lines changed
Expand file tree Collapse file tree 2 files changed +9
-34
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ const CheckpointDetails = () => {
1818 const [ totalPages , setTotalPages ] = useState ( 0 ) ;
1919 const [ firstPage , setFirstPage ] = useState ( 0 ) ;
2020 const rowsPerPage = 1 ; // Fixed value
21- const { apiBaseUrl, alpenExplorerBaseUrl , bitcoinExplorerBaseUrl } =
21+ const { apiBaseUrl, bitcoinExplorerBaseUrl } =
2222 useConfig ( ) ;
2323
2424 useEffect ( ( ) => {
@@ -106,27 +106,15 @@ const CheckpointDetails = () => {
106106 </ span >
107107 </ div >
108108 < div className = { styles . checkpointRow } >
109- < span className = { styles . checkpointLabel } > Alpen start block:</ span >
109+ < span className = { styles . checkpointLabel } > Strata start block:</ span >
110110 < span className = { styles . checkpointValue } >
111- < a
112- href = { `${ alpenExplorerBaseUrl } /block/${ checkpoint . l2_range [ 0 ] } ` }
113- target = "_blank"
114- rel = "noreferrer"
115- >
116- { checkpoint . l2_range [ 0 ] }
117- </ a >
111+ { checkpoint . l2_range [ 0 ] }
118112 </ span >
119113 </ div >
120114 < div className = { styles . checkpointRow } >
121- < span className = { styles . checkpointLabel } > Alpen end block:</ span >
115+ < span className = { styles . checkpointLabel } > Strata end block:</ span >
122116 < span className = { styles . checkpointValue } >
123- < a
124- href = { `${ alpenExplorerBaseUrl } /block/${ checkpoint . l2_range [ 1 ] } ` }
125- target = "_blank"
126- rel = "noreferrer"
127- >
128- { checkpoint . l2_range [ 1 ] }
129- </ a >
117+ { checkpoint . l2_range [ 1 ] }
130118 </ span >
131119 </ div >
132120 </ div >
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ const TableBody: React.FC = () => {
1818 const [ currentPage , setCurrentPage ] = useState ( pageFromUrl ) ;
1919 const {
2020 apiBaseUrl,
21- alpenExplorerBaseUrl,
2221 bitcoinExplorerBaseUrl,
2322 refreshIntervalS,
2423 } = useConfig ( ) ;
@@ -78,8 +77,8 @@ const TableBody: React.FC = () => {
7877 < th className = { styles . tableHeader } > Status</ th >
7978 < th className = { styles . tableHeader } > Signet start block</ th >
8079 < th className = { styles . tableHeader } > Signet end block</ th >
81- < th className = { styles . tableHeader } > Alpen start block</ th >
82- < th className = { styles . tableHeader } > Alpen end block</ th >
80+ < th className = { styles . tableHeader } > Strata start block</ th >
81+ < th className = { styles . tableHeader } > Strata end block</ th >
8382 </ tr >
8483 </ thead >
8584 < tbody >
@@ -131,22 +130,10 @@ const TableBody: React.FC = () => {
131130 </ a >
132131 </ td >
133132 < td className = { styles . tableCell } >
134- < a
135- href = { `${ alpenExplorerBaseUrl } /block/${ checkpoint . l2_range [ 0 ] } ` }
136- target = "_blank"
137- rel = "noreferrer"
138- >
139- { checkpoint . l2_range [ 0 ] }
140- </ a >
133+ { checkpoint . l2_range [ 0 ] }
141134 </ td >
142135 < td className = { styles . tableCell } >
143- < a
144- href = { `${ alpenExplorerBaseUrl } /block/${ checkpoint . l2_range [ 1 ] } ` }
145- target = "_blank"
146- rel = "noreferrer"
147- >
148- { checkpoint . l2_range [ 1 ] }
149- </ a >
136+ { checkpoint . l2_range [ 1 ] }
150137 </ td >
151138 </ tr >
152139 ) ) }
You can’t perform that action at this time.
0 commit comments