diff --git a/web/src/app/ee/admin/groups/[groupId]/GroupDisplay.tsx b/web/src/app/ee/admin/groups/[groupId]/GroupDisplay.tsx
index 680685858..cde36c9e5 100644
--- a/web/src/app/ee/admin/groups/[groupId]/GroupDisplay.tsx
+++ b/web/src/app/ee/admin/groups/[groupId]/GroupDisplay.tsx
@@ -392,7 +392,7 @@ export const GroupDisplay = ({
- Personas
+ Assistants
{userGroup.document_sets.length > 0 ? (
@@ -410,7 +410,7 @@ export const GroupDisplay = ({
) : (
<>
- No Personas in this group...
+ No Assistants in this group...
>
)}
diff --git a/web/src/components/IsPublicGroupSelector.tsx b/web/src/components/IsPublicGroupSelector.tsx
index 38cc86bbe..63d47e506 100644
--- a/web/src/components/IsPublicGroupSelector.tsx
+++ b/web/src/components/IsPublicGroupSelector.tsx
@@ -28,6 +28,9 @@ export const IsPublicGroupSelector = ({
useEffect(() => {
if (user && userGroups) {
const isUserAdmin = user.role === UserRole.ADMIN;
+ if (!isUserAdmin) {
+ formikProps.setFieldValue("is_public", false);
+ }
if (userGroups.length === 1 && !isUserAdmin) {
formikProps.setFieldValue("groups", [userGroups[0].id]);
setShouldHideContent(true);