diff --git a/src/views/ApplyPage/components/FileInput/index.tsx b/src/views/ApplyPage/components/FileInput/index.tsx index 03a2bc57..3029a67a 100644 --- a/src/views/ApplyPage/components/FileInput/index.tsx +++ b/src/views/ApplyPage/components/FileInput/index.tsx @@ -120,7 +120,12 @@ const FileInput = ({ section, id, isReview, disabled, defaultFile }: FileInputPr onChange={(e) => handleFileChange(e, id)} ref={inputRef} className={fileInput} - disabled={disabled || isReview} + disabled={ + disabled || + isReview || + (uploadPercent >= 0 && uploadPercent < 100) || + (uploadPercent === 100 && fileName === '') + } />