feat: change condition of duplicate check (#4273)

* change condition of duplicate check

* fix: review comments addressed
This commit is contained in:
rostaklein
2024-03-05 12:11:37 +01:00
committed by GitHub
parent 91e5e7598b
commit f2099d339f
4 changed files with 41 additions and 4 deletions

View File

@ -9,4 +9,5 @@ export const settings: Settings = {
},
maxFileSize: '10MB',
},
minLengthOfStringForDuplicateCheck: 3,
};

View File

@ -11,4 +11,5 @@ export interface Settings {
};
maxFileSize: `${number}MB`;
};
minLengthOfStringForDuplicateCheck: number;
}