From c7d51d6390b54dfdcac0a6d31c2fb2e28f25d332 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 21 Jan 2026 19:10:12 +0000 Subject: [PATCH] Render both ListFooter and CreateAnother when isMe Always render ListFooter for pagination behavior (loading indicator, error state). When viewing own profile, also render CreateAnother button after the ListFooter. --- .../StarterPack/ProfileStarterPacks.tsx | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/components/StarterPack/ProfileStarterPacks.tsx b/src/components/StarterPack/ProfileStarterPacks.tsx index 147cab5416..d206e5bf5e 100644 --- a/src/components/StarterPack/ProfileStarterPacks.tsx +++ b/src/components/StarterPack/ProfileStarterPacks.tsx @@ -164,17 +164,17 @@ export function ProfileStarterPacks({ if (!data || items?.length === 0) { return null } - if (isMe) { - return - } return ( - + <> + + {isMe && } + ) }, [ data,