This commit is contained in:
pablodanswer 2024-10-08 09:33:29 -07:00 committed by GitHub
parent a0124e4e50
commit 3ef72b8d1a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -175,7 +175,7 @@ export function PersonasTable({
</div>,
<div key="edit" className="flex">
<div className="mr-auto my-auto">
{!persona.is_default_persona && isEditable ? (
{!persona.builtin_persona && isEditable ? (
<div
className="hover:bg-hover rounded p-1 cursor-pointer"
onClick={async () => {

View File

@ -49,7 +49,7 @@ export const IsPublicGroupSelector = <T extends IsPublicGroupSelectorFormType>({
setShouldHideContent(false);
}
}
}, [user, userGroups, formikProps, isPaidEnterpriseFeaturesEnabled]);
}, [user, userGroups, isPaidEnterpriseFeaturesEnabled]);
if (isLoadingUser || userGroupsIsLoading) {
return <div>Loading...</div>;