Skip to content

Commit 4d47ec4

Browse files
committed
k (#2721)
1 parent c87d134 commit 4d47ec4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

web/src/app/admin/assistants/PersonaTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ export function PersonasTable({
175175
</div>,
176176
<div key="edit" className="flex">
177177
<div className="mr-auto my-auto">
178-
{!persona.is_default_persona && isEditable ? (
178+
{!persona.builtin_persona && isEditable ? (
179179
<div
180180
className="hover:bg-hover rounded p-1 cursor-pointer"
181181
onClick={async () => {

web/src/components/IsPublicGroupSelector.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export const IsPublicGroupSelector = <T extends IsPublicGroupSelectorFormType>({
4949
setShouldHideContent(false);
5050
}
5151
}
52-
}, [user, userGroups, formikProps, isPaidEnterpriseFeaturesEnabled]);
52+
}, [user, userGroups, isPaidEnterpriseFeaturesEnabled]);
5353

5454
if (isLoadingUser || userGroupsIsLoading) {
5555
return <div>Loading...</div>;

0 commit comments

Comments
 (0)