From bf4eab541a936b4468c86f40b908673bd3f5e33d Mon Sep 17 00:00:00 2001 From: abinas <144870133+abinas-hdb@users.noreply.github.com> Date: Wed, 26 Nov 2025 11:57:05 +0900 Subject: [PATCH] Update index.ts Fix missing 'ko' in index.ts --- frontend/src/locale/src/HelpDoc/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/locale/src/HelpDoc/index.ts b/frontend/src/locale/src/HelpDoc/index.ts index b7c9f373..f70dff69 100644 --- a/frontend/src/locale/src/HelpDoc/index.ts +++ b/frontend/src/locale/src/HelpDoc/index.ts @@ -8,9 +8,10 @@ import * as ru from "./ru/index"; import * as sk from "./sk/index"; import * as vi from "./vi/index"; import * as zh from "./zh/index"; +import * as ko from "./ko/index"; import * as bg from "./bg/index"; -const items: any = { en, de, ja, sk, zh, pl, ru, it, vi, nl, bg }; +const items: any = { en, de, ja, sk, zh, pl, ru, it, vi, nl, bg, ko }; const fallbackLang = "en";