Reduce feed page size from 15 to 10

Co-authored-by: shakespeare.diy <assistant@shakespeare.diy>
This commit is contained in:
shakespeare.diy
2026-02-18 01:10:11 -06:00
parent 741975773e
commit 7460586a47
+1 -1
View File
@@ -6,7 +6,7 @@ import { useFollowList } from './useFollowActions';
import { getEnabledFeedKinds } from '@/lib/extraKinds';
import type { NostrEvent } from '@nostrify/nostrify';
const PAGE_SIZE = 15;
const PAGE_SIZE = 10;
/** The base kinds always included in every feed query. */
const BASE_FEED_KINDS = [1, 6];