diff --git a/frontend/src/ts/test/wikipedia.ts b/frontend/src/ts/test/wikipedia.ts index 64fbbd614..68fd21c05 100644 --- a/frontend/src/ts/test/wikipedia.ts +++ b/frontend/src/ts/test/wikipedia.ts @@ -4,7 +4,7 @@ import { Section } from "../utils/misc"; export async function getTLD( languageGroup: MonkeyTypes.LanguageGroup -): Promise<"en" | "es" | "fr" | "de" | "pt" | "it" | "nl"> { +): Promise<"en" | "es" | "fr" | "de" | "pt" | "it" | "nl" | "pl"> { // language group to tld switch (languageGroup.name) { case "english": @@ -28,6 +28,9 @@ export async function getTLD( case "dutch": return "nl"; + case "polish": + return "pl"; + default: return "en"; }