From 18954df6565108a469fb1608ea3715dd9bb1b02d Mon Sep 17 00:00:00 2001 From: dujinkim Date: Mon, 1 Sep 2025 09:12:09 +0000 Subject: (대표님) 구매 기본계약, gtc 개발 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/ship-vendor-document/add-attachment-dialog.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'components/ship-vendor-document/add-attachment-dialog.tsx') diff --git a/components/ship-vendor-document/add-attachment-dialog.tsx b/components/ship-vendor-document/add-attachment-dialog.tsx index 61a078f7..1e9bfb51 100644 --- a/components/ship-vendor-document/add-attachment-dialog.tsx +++ b/components/ship-vendor-document/add-attachment-dialog.tsx @@ -75,10 +75,10 @@ const attachmentUploadSchema = z.object({ (files) => files.every((file) => file.size <= MAX_FILE_SIZE), "File size must be 50MB or less" ) - .refine( - (files) => files.every((file) => ACCEPTED_FILE_TYPES.includes(file.type)), - "Unsupported file format" - ), + // .refine( + // (files) => files.every((file) => ACCEPTED_FILE_TYPES.includes(file.type)), + // "Unsupported file format" + // ), }) interface AddAttachmentDialogProps { -- cgit v1.2.3