diff --git a/projects/app/src/pages/app/list/components/List.tsx b/projects/app/src/pages/app/list/components/List.tsx index 2dbef7ae11e1..a1a3509be0e0 100644 --- a/projects/app/src/pages/app/list/components/List.tsx +++ b/projects/app/src/pages/app/list/components/List.tsx @@ -409,12 +409,13 @@ const ListItem = () => { )} {!!editPerApp && ( - changeOwner({ - appId: editPerApp._id, - ownerId: tmbId - }).then(() => loadMyApps()) - } + {...(editPerApp.permission.isOwner && { + onChangeOwner: (tmbId: string) => + changeOwner({ + appId: editPerApp._id, + ownerId: tmbId + }).then(() => loadMyApps()) + })} refetchResource={loadMyApps} hasParent={Boolean(parentId)} resumeInheritPermission={onResumeInheritPermission}