From 4d8cc304a7d19a3ea1177ed3c8feb89db27c92e1 Mon Sep 17 00:00:00 2001 From: ytkimirti Date: Fri, 18 Apr 2025 20:56:23 +0200 Subject: [PATCH] change initial fetch count from 100 to 10 --- src/components/databrowser/hooks/use-fetch-keys.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/databrowser/hooks/use-fetch-keys.ts b/src/components/databrowser/hooks/use-fetch-keys.ts index 456c92d..b6fa98f 100644 --- a/src/components/databrowser/hooks/use-fetch-keys.ts +++ b/src/components/databrowser/hooks/use-fetch-keys.ts @@ -5,7 +5,7 @@ import type { Redis } from "@upstash/redis" const PAGE_SIZE = 30 -const FETCH_COUNTS = [100, 200, 400, 800] +const FETCH_COUNTS = [10, 100, 200, 400, 800] export type RedisKey = [string, DataType]