From f807f2d2bcc4d04a0a667aa06f9ec538eb439a11 Mon Sep 17 00:00:00 2001 From: Yves Gugger Date: Thu, 18 Dec 2025 11:10:45 +0100 Subject: [PATCH] fix: Remove unsupported TLDs from DropsTab --- frontend/src/components/hunt/DropsTab.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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: 'đŸ’ŧ' }, ] // ============================================================================