We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8770c92 commit 0bbbee1Copy full SHA for 0bbbee1
apps/index/src/app/page.tsx
@@ -70,7 +70,9 @@ const LANGUAGE_INFO = {
70
} as const;
71
72
export default function Home() {
73
- const siteEntries = Object.entries(SITES);
+ const siteEntries = Object.entries(SITES).filter(
74
+ ([locale]) => locale !== 'en',
75
+ );
76
const pendingSiteEntries = Object.entries(PENDING_SITES);
77
const totalTranslations = siteEntries.length;
78
0 commit comments