From e85de56e9e63bf13b49a79af55a3908bc9591406 Mon Sep 17 00:00:00 2001 From: minseokiim Date: Sat, 27 Jan 2024 22:55:45 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20=ED=8C=90=EB=A7=A4=20?= =?UTF-8?q?=EC=83=81=ED=83=9C=EC=97=90=20=EB=94=B0=EB=A5=B8=20=EB=AC=B8?= =?UTF-8?q?=EA=B5=AC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/mypage/items/sellingItems/index.tsx | 2 +- utils/mypage-utils.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/mypage/items/sellingItems/index.tsx b/components/mypage/items/sellingItems/index.tsx index e8f4eede..0a50a1b0 100644 --- a/components/mypage/items/sellingItems/index.tsx +++ b/components/mypage/items/sellingItems/index.tsx @@ -42,7 +42,7 @@ const MItem = ({ item }: { item: MypageSellingType }) => { ); case 'DONEDEAL': - return

판매완료

; + return

판매일 : {getDotDate(item.endDate, true, true, true)}

; case 'UNSOLD': case 'UNABLESELL': return

{getSellState(dealState)}

; diff --git a/utils/mypage-utils.ts b/utils/mypage-utils.ts index 480a2b49..213262e6 100644 --- a/utils/mypage-utils.ts +++ b/utils/mypage-utils.ts @@ -35,7 +35,7 @@ export const noMask = (value: string) => { export const getSellState = (state: string) => { switch (state) { case 'EXPIRED': - return '기한 만료'; + return '게시 기한 만료'; case 'UNSOLD': return '체크인 만료'; case 'UNABLESELL':