Skip to content

Commit

Permalink
fix(fe-piattaforma): updates limite csv 20240701
Browse files Browse the repository at this point in the history
  • Loading branch information
sgravinadxc committed Jul 1, 2024
1 parent ed8796f commit f5adaef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fe-piattaforma/src/hooks/useCSVProcessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ export function useCSVProcessor(file: File | undefined) {
return;
}

if(results.data.length > 600) {
if(results.data.length > 400) {
rejectWithMessage(
"Visto l'elevato numero di caricamenti odierni, ti chiediamo di inserire file contenenti un massimo di 600 righe"
"Visto l'elevato numero di caricamenti odierni, ti chiediamo di inserire file contenenti un massimo di 400 righe"
);
return;
}
Expand Down

0 comments on commit f5adaef

Please sign in to comment.