diff --git a/apps/renderer/src/modules/entry-column/index.tsx b/apps/renderer/src/modules/entry-column/index.tsx index f55bffabd5..47d7681c1e 100644 --- a/apps/renderer/src/modules/entry-column/index.tsx +++ b/apps/renderer/src/modules/entry-column/index.tsx @@ -44,15 +44,6 @@ const scrollSeekConfiguration: ScrollSeekConfiguration = { exit: (velocity) => Math.abs(velocity) < 1000, } -const INITIAL_ITEM_COUNTS = { - [FeedViewType.Articles]: 10, - [FeedViewType.Pictures]: 20, - [FeedViewType.Videos]: 20, - [FeedViewType.SocialMedia]: 5, - [FeedViewType.Notifications]: 10, - [FeedViewType.Audios]: 10, -} - export type VirtuosoComponentProps = { onlyShowArchivedButton: boolean } type VirtuosoComponentPropsContext = { context?: VirtuosoComponentProps } @@ -148,10 +139,8 @@ function EntryColumnImpl() { const scrollRef = useRef(null) const virtuosoOptions = { - initialItemCount: INITIAL_ITEM_COUNTS[view], components: { List: EntryListContent, - Footer: useCallback( ({ context }: VirtuosoComponentPropsContext) => { if (!isFetchingNextPage) {