From 8e6c0ad54ecda50e4ac3f13ffa5e0a4931dc8baa Mon Sep 17 00:00:00 2001 From: Cho Young-Hwi Date: Tue, 17 Mar 2026 16:12:35 +0000 Subject: [PATCH] [#269] Default language filter to English on discovery page Co-Authored-By: Claude Opus 4.6 --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5662e58b..1ba70877 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,7 +33,7 @@ export default async function Home({ : "all"; const page = Math.max(1, parseInt(rawPage ?? "1", 10) || 1); const genre = rawGenre && (GENRES as readonly string[]).includes(rawGenre) ? rawGenre : "all"; - const lang = rawLang && (LANGUAGES as readonly string[]).includes(rawLang) ? rawLang : "all"; + const lang = rawLang && (LANGUAGES as readonly string[]).includes(rawLang) ? rawLang : "English"; const supabase = createServerClient();