diff --git a/src/views/ApplyPage/components/FileInput/index.tsx b/src/views/ApplyPage/components/FileInput/index.tsx index 8316865c..f4d2d786 100644 --- a/src/views/ApplyPage/components/FileInput/index.tsx +++ b/src/views/ApplyPage/components/FileInput/index.tsx @@ -19,7 +19,7 @@ interface FileInputProps { } const LIMIT_SIZE = 1024 ** 2 * 50; // 50MB -const ACCEPTED_FORMATS = '.pdf, .pptx'; +const ACCEPTED_FORMATS = '.pdf'; const FileInput = ({ section, id, isReview, disabled, defaultFile }: FileInputProps) => { const inputRef = useRef(null); @@ -151,7 +151,7 @@ const FileInput = ({ section, id, isReview, disabled, defaultFile }: FileInputPr {(uploadPercent !== -1 || !defaultFileName) && ( {uploadPercent < 0 && fileName === '' - ? '50mb 이하 | pdf, pptx' + ? '50mb 이하 | pdf' : isFileUploading ? `업로드 중... ${uploadPercent}/100% 완료` : isFileSending @@ -161,7 +161,7 @@ const FileInput = ({ section, id, isReview, disabled, defaultFile }: FileInputPr )} {uploadPercent === -1 && defaultFileName && ( - {fileName === 'delete-file' ? '50mb 이하 | pdf, pptx' : defaultFileName} + {fileName === 'delete-file' ? '50mb 이하 | pdf' : defaultFileName} )}