reduce filter dropdown page size

This commit is contained in:
miloschwartz
2026-07-03 10:13:58 -04:00
parent b53f80d317
commit 811119a9a6
5 changed files with 25 additions and 10 deletions
+2 -2
View File
@@ -122,8 +122,8 @@ export const launcherFilterListQuerySchema = z.strictObject({
.int()
.positive()
.optional()
.catch(500)
.default(500),
.catch(20)
.default(20),
page: z.coerce.number().int().min(1).optional().catch(1).default(1),
query: z.string().optional().default("")
});