From 57e3a696f4bdee665cf592463acf48ba83a6e2cd Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Mon, 24 Nov 2025 18:38:08 +0900 Subject: (김준회) dolce rebuild: 파일 업로드 개선, b4 일괄업로드 문서명 파싱 문제 해결 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/dolce/components/file-upload-progress-list.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'lib/dolce/components/file-upload-progress-list.tsx') diff --git a/lib/dolce/components/file-upload-progress-list.tsx b/lib/dolce/components/file-upload-progress-list.tsx index d54e9eaa..7354c85b 100644 --- a/lib/dolce/components/file-upload-progress-list.tsx +++ b/lib/dolce/components/file-upload-progress-list.tsx @@ -85,7 +85,16 @@ function FileUploadProgressItem({ fileProgress }: FileUploadProgressItemProps) { {/* Progress Bar */} {status === "uploading" && ( - + <> + + {/* 90% 이상일 때 추가 안내 메시지 */} + {progress >= 90 && progress < 100 && ( +

+ + 서버에서 DOLCE API로 전송 중... +

+ )} + )} {/* 에러 메시지 */} -- cgit v1.2.3