diff --git a/backend/onyx/db/persona.py b/backend/onyx/db/persona.py
index 40667e02dcad..e37cde55ddf1 100644
--- a/backend/onyx/db/persona.py
+++ b/backend/onyx/db/persona.py
@@ -228,6 +228,7 @@ def create_update_persona(
num_chunks=create_persona_request.num_chunks,
llm_relevance_filter=create_persona_request.llm_relevance_filter,
llm_filter_extraction=create_persona_request.llm_filter_extraction,
+ is_default_persona=create_persona_request.is_default_persona,
)
versioned_make_persona_private = fetch_versioned_implementation(
diff --git a/web/src/app/assistants/mine/AssistantCard.tsx b/web/src/app/assistants/mine/AssistantCard.tsx
index be5d26320f92..30abd4d30fc7 100644
--- a/web/src/app/assistants/mine/AssistantCard.tsx
+++ b/web/src/app/assistants/mine/AssistantCard.tsx
@@ -15,8 +15,6 @@ import {
PopoverContent,
} from "@/components/ui/popover";
import { AssistantIcon } from "@/components/assistants/AssistantIcon";
-import { AssistantVisibilityPopover } from "./AssistantVisibilityPopover";
-import { DeleteAssistantPopover } from "./DeleteAssistantPopover";
import { Persona } from "@/app/admin/assistants/interfaces";
import { useUser } from "@/components/user/UserProvider";
import { useAssistants } from "@/components/context/AssistantsContext";
@@ -149,14 +147,9 @@ const AssistantCard: React.FC<{
)}
{isOwnedByUser && (
-
-
- open ? setActivePopover(null) : setActivePopover(undefined)
- }
- >
-
+
+
+
- {activePopover === null && (
-
+
+
+ {isPaidEnterpriseFeaturesEnabled && isOwnedByUser && (
- {isPaidEnterpriseFeaturesEnabled && isOwnedByUser && (
-
- )}
-
-
- )}
- {activePopover === "visibility" && (
-
{
- await togglePersonaPublicStatus(persona.id, isPublic);
- await refreshAssistants();
- }}
- />
- )}
- {activePopover === "delete" && (
- {
- const success = await deletePersona(persona.id);
- if (success) {
- await refreshAssistants();
- }
- closePopover();
- }}
- />
- )}
+ )}
+
+
diff --git a/web/src/app/assistants/mine/AssistantModal.tsx b/web/src/app/assistants/mine/AssistantModal.tsx
index aa28ebbfced0..41bad9b25d34 100644
--- a/web/src/app/assistants/mine/AssistantModal.tsx
+++ b/web/src/app/assistants/mine/AssistantModal.tsx
@@ -118,7 +118,7 @@ export function AssistantModal({
return (