diff --git a/frontend/lib/registry/components/v2-file-upload/FileUploadComponent.tsx b/frontend/lib/registry/components/v2-file-upload/FileUploadComponent.tsx index 8b9671c8..d716b9ab 100644 --- a/frontend/lib/registry/components/v2-file-upload/FileUploadComponent.tsx +++ b/frontend/lib/registry/components/v2-file-upload/FileUploadComponent.tsx @@ -199,12 +199,6 @@ const FileUploadComponent: React.FC = ({ if (imageObjidFromFormData && /^\d+$/.test(String(imageObjidFromFormData))) { const objidStr = String(imageObjidFromFormData); - // πŸ†• 등둝 λͺ¨λ“œ(formData.idκ°€ μ—†λŠ” 경우)μ—μ„œλŠ” 이전 파일 λ‘œλ“œ μŠ€ν‚΅ - // 연속 등둝 μ‹œ 이전 μ €μž₯의 image 값이 λ‚¨μ•„μžˆμ–΄ λ‹€μ‹œ λ‘œλ“œλ˜λŠ” 것을 λ°©μ§€ - if (!formData?.id) { - return; - } - // 이미 같은 objid의 파일이 λ‘œλ“œλ˜μ–΄ 있으면 μŠ€ν‚΅ const alreadyLoaded = uploadedFiles.some(f => String(f.objid) === objidStr); if (alreadyLoaded) {