diff --git a/src/components/Seo.tsx b/src/components/Seo.tsx
index d4f03712809..f01bcdbfa61 100644
--- a/src/components/Seo.tsx
+++ b/src/components/Seo.tsx
@@ -26,14 +26,6 @@ const deployedTranslations = [
// It must be the same between all translations.
];
-let shouldPreventIndexing = false;
-if (
- siteConfig.languageCode !== 'en' &&
- !deployedTranslations.includes(siteConfig.languageCode)
-) {
- shouldPreventIndexing = true;
-}
-
function getDomain(languageCode: string): string {
const subdomain = languageCode === 'en' ? '' : languageCode + '.';
return subdomain + 'react.dev';
@@ -69,7 +61,6 @@ export const Seo = withRouter(
href={canonicalUrl.replace(siteDomain, getDomain('en'))}
hrefLang="x-default"
/>
- {shouldPreventIndexing && }
{deployedTranslations.map((languageCode) => (