We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a314a7 commit 4c95e90Copy full SHA for 4c95e90
apps/frontend/package.json
@@ -112,4 +112,4 @@
112
"vite-plugin-svgr": "^2.4.0",
113
"vite-plugin-ts-mono-alias": "^1.1.8"
114
}
115
-}
+}
apps/frontend/src/pages/tasks.[id].edit/partials/InputData/utils.ts
@@ -42,11 +42,6 @@ export const isPreAnnotationFile = (filename: string) => {
42
export const isCorrectFiles = (files: File[], type: MediaType) => {
43
let result = true;
44
45
- if (files.length > 100) {
46
- commonController.notificationErrorMessage({ message: i18n.t('fileLimitOneTimeDescription') }, 3);
47
- return;
48
- }
49
-
50
for (let i = 0; i < files.length; i++) {
51
const fileUnit = files[i];
52
0 commit comments