summaryrefslogtreecommitdiff
path: root/lib/rfq-last
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-09-22 08:53:08 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-09-22 08:53:08 +0000
commita1e2aae9b68b7d6f998e40e801822f1385c3c1ab (patch)
tree998dca1e520c8c870fc56945f2eab97e3bd178d0 /lib/rfq-last
parent92b8d91b5879ca91e3f5b96f0f7115e1e2b79d83 (diff)
(최겸) 구매 견적 내 프로젝트 계약일 Date 오류 수정
Diffstat (limited to 'lib/rfq-last')
-rw-r--r--lib/rfq-last/vendor-response/editor/rfq-info-header.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rfq-last/vendor-response/editor/rfq-info-header.tsx b/lib/rfq-last/vendor-response/editor/rfq-info-header.tsx
index 1078b20e..fe8c5508 100644
--- a/lib/rfq-last/vendor-response/editor/rfq-info-header.tsx
+++ b/lib/rfq-last/vendor-response/editor/rfq-info-header.tsx
@@ -201,7 +201,7 @@ export default function RfqInfoHeader({ rfq, rfqDetail, vendor }: RfqInfoHeaderP
<Calendar className="h-4 w-4" />
<span>계약일</span>
</div>
- <p className="font-medium">{rfq.project && rfq.project.CNRT_DT ? formatDate(new Date(rfq.project.CNRT_DT)) : '-'}</p>
+ <p className="font-medium">{rfq.project && rfq.project.CNRT_DT ? rfq.project.CNRT_DT : '-'}</p>
</div>
)}
</div>