fix(B03): skip polling for unchanged uploads

This commit is contained in:
2026-08-29 19:52:18 +09:00
parent e6ac071f58
commit 3640591c46
+6
View File
@@ -566,6 +566,12 @@ export async function renderB03FileInput(root: HTMLElement): Promise<void> {
renderUploadResults(resultList, uploaded);
showToast(L("B03_File_Upload_Success"), "success");
// 모든 파일이 기존 파일과 같으면 새 분석이 시작되지 않는다.
if (uploaded.length === 0) {
navigateTo(completionRoute);
return;
}
showToast(L("B03_File_Analysis_InProgress"), "info");
const analysisComplete = await pollAnalysis(activeProjectId);