From 2779386da8e5efbc187caabe0f98b18785f2fefd Mon Sep 17 00:00:00 2001 From: A happy cat Date: Mon, 27 Jan 2025 18:21:45 +0100 Subject: [PATCH] increased limit to 500 --- app/shared/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/shared/config.ts b/app/shared/config.ts index 2440a99366..b69d106599 100644 --- a/app/shared/config.ts +++ b/app/shared/config.ts @@ -1,4 +1,4 @@ -const PRELOAD_OPTIONS_LIMIT = 200; +const PRELOAD_OPTIONS_LIMIT = 500; const PRELOAD_OPTIONS_SEARCH = 2000; const preloadOptionsLimit = () => PRELOAD_OPTIONS_LIMIT;