From 34e8b3eb559b54e97cf49b59b9ca79f9dc379431 Mon Sep 17 00:00:00 2001 From: "focp212@naver.com" Date: Thu, 20 Nov 2025 16:17:40 +0900 Subject: [PATCH] =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/entities/home/ui/home-notice-item.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/entities/home/ui/home-notice-item.tsx b/src/entities/home/ui/home-notice-item.tsx index 2f674b1..9ca56be 100644 --- a/src/entities/home/ui/home-notice-item.tsx +++ b/src/entities/home/ui/home-notice-item.tsx @@ -17,9 +17,6 @@ export const HomeNoticeItem = ({ const formatDate = (date?: string) => { if (!date) return ''; const currentLang = i18n.language; - if (currentLang === 'ko') { - return moment(date).format('YY년 MM월 DD일'); - } return moment(date).format('YYYY.MM.DD'); };