mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
Fix mode check
This commit is contained in:
parent
9644c15abc
commit
252e5b9c74
@ -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);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user