diff --git a/frontend/src/components/features/conversation/conversation-name-context-menu.tsx b/frontend/src/components/features/conversation/conversation-name-context-menu.tsx index 9d41706b65..3e4ae3212a 100644 --- a/frontend/src/components/features/conversation/conversation-name-context-menu.tsx +++ b/frontend/src/components/features/conversation/conversation-name-context-menu.tsx @@ -66,7 +66,7 @@ export function ConversationNameContextMenu({ // Check if we should show the public sharing option // Only show for V1 conversations in SAAS mode const shouldShowPublicSharing = - isV1Conversation && config?.APP_MODE !== "saas" && onTogglePublic; + isV1Conversation && config?.APP_MODE === "saas" && onTogglePublic; const hasDownload = Boolean(onDownloadViaVSCode); const hasExport = Boolean(onExportConversation);