From 27c0cdae5c553c7f2289f1f7e9aa342f8eb892c1 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 21 Jan 2026 19:08:28 +0000 Subject: [PATCH] Always render footer component Remove the early return for empty data - always render either CreateAnother (for own profile) or ListFooter (for other profiles). --- src/components/StarterPack/ProfileStarterPacks.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/components/StarterPack/ProfileStarterPacks.tsx b/src/components/StarterPack/ProfileStarterPacks.tsx index 147cab5416..6f2ea758d0 100644 --- a/src/components/StarterPack/ProfileStarterPacks.tsx +++ b/src/components/StarterPack/ProfileStarterPacks.tsx @@ -161,9 +161,6 @@ export function ProfileStarterPacks({ ) const renderFooter = useCallback(() => { - if (!data || items?.length === 0) { - return null - } if (isMe) { return } @@ -177,8 +174,6 @@ export function ProfileStarterPacks({ /> ) }, [ - data, - items?.length, isMe, bottomBarOffset, isFetchingNextPage,