summaryrefslogtreecommitdiff
path: root/components/ship-vendor-document/add-attachment-dialog.tsx
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-09-01 09:12:09 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-09-01 09:12:09 +0000
commit18954df6565108a469fb1608ea3715dd9bb1b02d (patch)
tree2675d254c547861a903a32459d89283a324e0e0d /components/ship-vendor-document/add-attachment-dialog.tsx
parentf91cd16a872d9cda04aeb5c4e31538e3e2bd1895 (diff)
(대표님) 구매 기본계약, gtc 개발
Diffstat (limited to 'components/ship-vendor-document/add-attachment-dialog.tsx')
-rw-r--r--components/ship-vendor-document/add-attachment-dialog.tsx8
1 files changed, 4 insertions, 4 deletions
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 {