fix(server): increase person search limit ()

This commit is contained in:
Jason Rasmussen 2024-09-13 12:33:16 -04:00 committed by GitHub
parent a373d50c31
commit c717fd2131
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 11 deletions
web/src/lib

View file

@ -93,7 +93,7 @@ export enum ActionQueryParameterValue {
MERGE = 'merge',
}
export const maximumLengthSearchPeople: number = 20;
export const maximumLengthSearchPeople = 1000;
// time to load the map before displaying the loading spinner
export const timeToLoadTheMap: number = 100;