From 9cda8482660a87fd98c9ee43f507d75ff75b4e23 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Fri, 28 Nov 2025 03:12:57 +0000 Subject: (최겸) 구매 입찰 피드백 반영(90%) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/bidding/selection/biddings-selection-columns.tsx | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'lib/bidding/selection/biddings-selection-columns.tsx') diff --git a/lib/bidding/selection/biddings-selection-columns.tsx b/lib/bidding/selection/biddings-selection-columns.tsx index 355d5aaa..87c489e3 100644 --- a/lib/bidding/selection/biddings-selection-columns.tsx +++ b/lib/bidding/selection/biddings-selection-columns.tsx @@ -175,23 +175,17 @@ export function getBiddingsSelectionColumns({ setRowAction }: GetColumnsProps): if (!startDate || !endDate) return - - const now = new Date() const startObj = new Date(startDate) const endObj = new Date(endDate) - const isPast = now > endObj - const isClosed = isPast - + // 비교로직만 유지, 색상표기/마감뱃지 제거 // UI 표시용 KST 변환 const formatKst = (d: Date) => new Date(d.getTime() + 9 * 60 * 60 * 1000).toISOString().slice(0, 16).replace('T', ' ') return (
-
+
{formatKst(startObj)} ~ {formatKst(endObj)}
- {isClosed && ( - 마감 - )}
) }, -- cgit v1.2.3