Show more vods on user page

This commit is contained in:
Kalle 2024-09-09 17:20:49 +03:00
parent 6a3855046c
commit 4b0b1e4a68

View File

@ -9,6 +9,7 @@ export const loader = async ({ params }: LoaderFunctionArgs) => {
).id;
return {
vods: findVods({ userId }),
// TODO: add pagination instead of not showing oldest vods at all
vods: findVods({ userId, limit: 100 }),
};
};