From cf322835877c930efab597d3dded37eaaf79d722 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A3=A8=EB=B0=80LuMir?= Date: Mon, 22 Jul 2024 21:51:21 +0900 Subject: [PATCH] fix: untranslated headings in navigation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Challanges -> 챌린지 도전하기 Recap -> 요약 --- src/utils/prepareMDX.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/prepareMDX.js b/src/utils/prepareMDX.js index 11a53832f..e295ba687 100644 --- a/src/utils/prepareMDX.js +++ b/src/utils/prepareMDX.js @@ -88,13 +88,13 @@ function extractHeaders(children, depth, out) { header = { url: '#challenges', depth: 2, - text: 'Challenges', + text: '챌린지 도전하기', }; } else if (child.type === 'Recap') { header = { url: '#recap', depth: 2, - text: 'Recap', + text: '요약', }; } else if (child.type === 'TeamMember') { header = {