@@ -32,7 +32,7 @@ import { SUPPORTED_WALLETS } from '../../../types/client/wallets';
32
32
import type { CustomLink , CustomLinksGroup } from '../../../types/footerLinks' ;
33
33
import { CHAIN_INDICATOR_IDS , HOME_STATS_WIDGET_IDS } from '../../../types/homepage' ;
34
34
import type { ChainIndicatorId , HeroBannerButtonState , HeroBannerConfig , HomeStatsWidgetId } from '../../../types/homepage' ;
35
- import { type NetworkVerificationTypeEnvs , type NetworkExplorer , type FeaturedNetwork , NETWORK_GROUPS } from '../../../types/networks' ;
35
+ import { type NetworkVerificationTypeEnvs , type NetworkExplorer , type FeaturedNetwork } from '../../../types/networks' ;
36
36
import { COLOR_THEME_IDS } from '../../../types/settings' ;
37
37
import type { FontFamily } from '../../../types/ui' ;
38
38
import type { AddressFormat , AddressViewId } from '../../../types/views/address' ;
@@ -546,7 +546,7 @@ const featuredNetworkSchema: yup.ObjectSchema<FeaturedNetwork> = yup
546
546
. shape ( {
547
547
title : yup . string ( ) . required ( ) ,
548
548
url : yup . string ( ) . test ( urlTest ) . required ( ) ,
549
- group : yup . string ( ) . oneOf ( NETWORK_GROUPS ) . required ( ) ,
549
+ group : yup . string ( ) . required ( ) ,
550
550
icon : yup . string ( ) . test ( urlTest ) ,
551
551
isActive : yup . boolean ( ) ,
552
552
invertIconInDarkMode : yup . boolean ( ) ,
0 commit comments