diff --git a/frontend/src/components/hunt/DropsTab.tsx b/frontend/src/components/hunt/DropsTab.tsx index 9b4e2a5..d520e57 100644 --- a/frontend/src/components/hunt/DropsTab.tsx +++ b/frontend/src/components/hunt/DropsTab.tsx @@ -46,7 +46,7 @@ interface ZoneStats { daily_drops: number } -type SupportedTld = 'ch' | 'li' | 'xyz' | 'org' | 'online' | 'info' | 'dev' | 'app' | 'club' | 'biz' +type SupportedTld = 'ch' | 'li' | 'xyz' | 'org' | 'online' | 'info' | 'dev' | 'app' const ALL_TLDS: { tld: SupportedTld; flag: string }[] = [ { tld: 'ch', flag: '🇨🇭' }, @@ -57,8 +57,6 @@ const ALL_TLDS: { tld: SupportedTld; flag: string }[] = [ { tld: 'info', flag: 'â„šī¸' }, { tld: 'dev', flag: '👨‍đŸ’ģ' }, { tld: 'app', flag: '📱' }, - { tld: 'club', flag: 'đŸŽ¯' }, - { tld: 'biz', flag: 'đŸ’ŧ' }, ] // ============================================================================