diff --git a/interface/src/components/upload/DragNdrop.tsx b/interface/src/components/upload/DragNdrop.tsx index a659bd106..d9d06c585 100644 --- a/interface/src/components/upload/DragNdrop.tsx +++ b/interface/src/components/upload/DragNdrop.tsx @@ -16,7 +16,7 @@ const DragNdrop = ({ onFileSelected }) => { const { LL } = useI18nContext(); const checkFileExtension = (file: File) => { - const validExtensions = ['.json', '.txt', '.csv', '.bin', '.md5']; + const validExtensions = ['.json', '.bin', '.md5']; const fileName = file.name; const fileExtension = fileName.substring(fileName.lastIndexOf('.')); if (validExtensions.includes(fileExtension)) {