fix(web): correctly handle person search with more than 100 results (#29002)

This commit is contained in:
maxinegardenas 2026-06-12 20:04:52 +00:00 committed by GitHub
parent abd62d9295
commit b21af78454
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -69,7 +69,7 @@ export enum OpenQueryParam {
PURCHASE_SETTINGS = 'user-purchase-settings',
}
export const maximumLengthSearchPeople = 1000;
export const maximumLengthSearchPeople = 100;
// time to load the map before displaying the loading spinner
export const timeToLoadTheMap: number = 100;