@@ -39,7 +39,7 @@ const networkFeatures: Record<DashboardSupportedNetwork, NetworkFeatures> = {
3939 [ Network . Gnosis ] : {
4040 hasValidators : true ,
4141 logo : GnosisLogo ,
42- beaconExplorer : { url : "https://beaconchain.gnosischain.com/" , name : "Beacon Beaconchain" }
42+ beaconExplorer : { url : "https://beaconchain.gnosischain.com/" , name : "Gnosis Beaconchain" }
4343 } ,
4444 [ Network . Lukso ] : {
4545 hasValidators : true ,
@@ -193,9 +193,7 @@ export function useNetworkStats() {
193193
194194 // Track which networks are still loading their node status or validators
195195 const [ networksLoadingNodes , setNetworksLoadingNodes ] = useState < Set < DashboardSupportedNetwork > > ( new Set ( ) ) ;
196- const [ networksLoadingValidators , setNetworksLoadingValidators ] = useState < Set < DashboardSupportedNetwork > > (
197- new Set ( )
198- ) ;
196+ const [ networksLoadingValidators , setNetworksLoadingValidators ] = useState < Set < DashboardSupportedNetwork > > ( new Set ( ) ) ;
199197
200198 // True until the initial discovery phase completes (client lists + installed packages)
201199 const [ initialLoading , setInitialLoading ] = useState ( true ) ;
@@ -361,10 +359,9 @@ export function useNetworkStats() {
361359 const clientsLoading = initialLoading ;
362360
363361 // Per-network loading: a specific network's node status is still being fetched
364- const isNetworkNodeLoading = useCallback (
365- ( network : DashboardSupportedNetwork ) => networksLoadingNodes . has ( network ) ,
366- [ networksLoadingNodes ]
367- ) ;
362+ const isNetworkNodeLoading = useCallback ( ( network : DashboardSupportedNetwork ) => networksLoadingNodes . has ( network ) , [
363+ networksLoadingNodes
364+ ] ) ;
368365
369366 // Per-network validators loading
370367 const isNetworkValidatorsLoading = useCallback (
0 commit comments