Skip to content

Commit

Permalink
k (#2721)
Browse files Browse the repository at this point in the history
  • Loading branch information
pablonyx committed Oct 17, 2024
1 parent c87d134 commit 4d47ec4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/src/app/admin/assistants/PersonaTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down
2 changes: 1 addition & 1 deletion web/src/components/IsPublicGroupSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>;
Expand Down

0 comments on commit 4d47ec4

Please sign in to comment.