diff --git a/assets/pages/info/TldPage.tsx b/assets/pages/info/TldPage.tsx index 223d5a5..14d10f6 100644 --- a/assets/pages/info/TldPage.tsx +++ b/assets/pages/info/TldPage.tsx @@ -50,20 +50,20 @@ function TldTable(filters: FiltersType) { return { key: tld.tld, - TLD: tld.tld.startsWith('xn--') ? punycode.toUnicode(tld.tld) : tld.tld, + TLD: punycode.toUnicode(tld.tld), Flag: toEmoji(tld.tld), Country: countryName } case 'gTLD': return { key: tld.tld, - TLD: tld.tld.startsWith('xn--') ? punycode.toUnicode(tld.tld) : tld.tld, + TLD: punycode.toUnicode(tld.tld), Operator: tld.registryOperator } default: return { key: tld.tld, - TLD: tld.tld.startsWith('xn--') ? punycode.toUnicode(tld.tld) : tld.tld + TLD: punycode.toUnicode(tld.tld) } } }))