diff --git a/app/features/user-page/loaders/u.$identifier.vods.server.ts b/app/features/user-page/loaders/u.$identifier.vods.server.ts index 8925be94a..885a360cc 100644 --- a/app/features/user-page/loaders/u.$identifier.vods.server.ts +++ b/app/features/user-page/loaders/u.$identifier.vods.server.ts @@ -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 }), }; };