diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx
index 43e9229588..0c6e2dd409 100644
--- a/src/screens/StarterPack/Wizard/index.tsx
+++ b/src/screens/StarterPack/Wizard/index.tsx
@@ -89,23 +89,31 @@ export function Wizard({
} = useProfileQuery({did: currentAccount?.did})
if (
- name &&
- rkey &&
- (!starterPack || (starterPack && listUri && !listItems))
+ (name &&
+ rkey &&
+ (!starterPack || (starterPack && listUri && !listItems))) ||
+ !profile
) {
return (
)
- } else if (!profile) {
+ } else if (name && rkey && starterPack?.creator.did !== currentAccount?.did) {
return (
)
}