From b21af784549f060e53be1db9e544d3375df61aa2 Mon Sep 17 00:00:00 2001 From: maxinegardenas Date: Fri, 12 Jun 2026 20:04:52 +0000 Subject: [PATCH] fix(web): correctly handle person search with more than 100 results (#29002) --- web/src/lib/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/lib/constants.ts b/web/src/lib/constants.ts index 3bb1539e0c..802f3bc63b 100644 --- a/web/src/lib/constants.ts +++ b/web/src/lib/constants.ts @@ -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;