fix .com tld logic
Seto Elkahfi committed
Nov 1, 2020 at 17:46 UTC
b0430134d98bc28ca63ffe2fe2ab6145d2ba2c9e
1 file changed
+1
-1
src/components/LanguageLinks.tsx
+1
-1
@@ -59,7 +59,7 @@ class LanguageLinks extends Component {
59
if (tld !== "se") {
60
languageList.push(sv)
61
}
62
- if (tld !== "en") {
62
+ if (tld !== "com") {
63
languageList.push(en)
64
}
65