From 82f304eb4a739f996157dc6fc6d18d475abe0f30 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 21 Jan 2026 19:04:56 +0000 Subject: [PATCH] Add pagination props to ListFooter and enable border top Pass isFetchingNextPage, hasNextPage, error, and onRetry props to ListFooter for consistent pagination behavior. Remove borderTopWidth: 0 to allow the border top to render like other list implementations. --- .../StarterPack/ProfileStarterPacks.tsx | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/src/components/StarterPack/ProfileStarterPacks.tsx b/src/components/StarterPack/ProfileStarterPacks.tsx index 76329d6db2..147cab5416 100644 --- a/src/components/StarterPack/ProfileStarterPacks.tsx +++ b/src/components/StarterPack/ProfileStarterPacks.tsx @@ -168,9 +168,24 @@ export function ProfileStarterPacks({ return } return ( - + ) - }, [data, items?.length, isMe, bottomBarOffset]) + }, [ + data, + items?.length, + isMe, + bottomBarOffset, + isFetchingNextPage, + hasNextPage, + isError, + fetchNextPage, + ]) return (