diff --git a/src/components/StarterPack/ProfileStarterPacks.tsx b/src/components/StarterPack/ProfileStarterPacks.tsx
index d206e5bf5e..5fee8a745b 100644
--- a/src/components/StarterPack/ProfileStarterPacks.tsx
+++ b/src/components/StarterPack/ProfileStarterPacks.tsx
@@ -164,17 +164,18 @@ export function ProfileStarterPacks({
if (!data || items?.length === 0) {
return null
}
+ // Show CreateAnother only at the end of the list on own profile
+ if (isMe && !hasNextPage && !isFetchingNextPage) {
+ return
+ }
return (
- <>
-
- {isMe && }
- >
+
)
}, [
data,