We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 636af2a commit f41ebd2Copy full SHA for f41ebd2
apps/web/src/features/upload/pages/UploadPage.tsx
@@ -38,6 +38,15 @@ export const UploadPage = () => {
38
data: processedDataResult.value,
39
instrument: instrument!
40
});
41
+ if (reformattedData.records.length > 1000) {
42
+ addNotification({
43
+ message: t({
44
+ en: 'Lots of entries, please wait...',
45
+ fr: 'Plusieur de donnee, attendue si vous plait'
46
+ }),
47
+ type: 'info'
48
+ });
49
+ }
50
uploadInstrumentRecordsMutation.mutate(reformattedData);
51
} else {
52
addNotification({
0 commit comments