fix: make makeup options on submit form clearer

This commit is contained in:
trafficlunar 2026-04-21 19:59:32 +01:00
parent d0fe60067a
commit 9e712530b0
3 changed files with 22 additions and 45 deletions

View file

@ -11,7 +11,7 @@ export default async function MiiList({ searchParams }: Props) {
const parsed = searchSchema.safeParse(searchParams);
if (!parsed.success) return <h1>{parsed.error.issues[0].message}</h1>;
const { page = 1, limit = 24 } = parsed.data;
const { page = 1, limit = 100 } = parsed.data;
const skip = (page - 1) * limit;