From 2650b7c0bb0ea12b68a58c0439f72d61df04b2f1 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Fri, 25 Jul 2025 07:51:15 +0000 Subject: (대표님) 정기평가 대상, 미들웨어 수정, nextauth 토큰 처리 개선, GTC 등 (최겸) 기술영업 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../table/detail-table/vendor-communication-drawer.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/techsales-rfq/table/detail-table/vendor-communication-drawer.tsx') diff --git a/lib/techsales-rfq/table/detail-table/vendor-communication-drawer.tsx b/lib/techsales-rfq/table/detail-table/vendor-communication-drawer.tsx index e6cd32a9..5b60ef0f 100644 --- a/lib/techsales-rfq/table/detail-table/vendor-communication-drawer.tsx +++ b/lib/techsales-rfq/table/detail-table/vendor-communication-drawer.tsx @@ -320,9 +320,9 @@ export function VendorCommunicationDrawer({ }; // 첨부파일 다운로드 - const handleAttachmentDownload = async (attachment: Attachment) => { - const { downloadFile } = await import("@/lib/file-download"); - await downloadFile(attachment.filePath, attachment.originalFileName); + const handleAttachmentDownload = (attachment: Attachment) => { + // TODO: 실제 다운로드 구현 + window.open(attachment.filePath, '_blank'); }; // 파일 아이콘 선택 -- cgit v1.2.3