mirror of
https://github.com/langgenius/dify.git
synced 2026-05-05 01:48:04 +08:00
chore: not show upgrade to sandbox
This commit is contained in:
@ -172,6 +172,7 @@ const WorkflowAppWithAdditionalContext = () => {
|
||||
} = useWorkflowInit()
|
||||
const workflowStore = useWorkflowStore()
|
||||
const { isLoadingCurrentWorkspace, currentWorkspace } = useAppContext()
|
||||
const notSupportMigration = true // wait for backend support
|
||||
const [showMigrationModal, setShowMigrationModal] = useState(false)
|
||||
const lastCheckedAppIdRef = useRef<string | null>(null)
|
||||
|
||||
@ -365,7 +366,7 @@ const WorkflowAppWithAdditionalContext = () => {
|
||||
<>
|
||||
<CollaborationSession />
|
||||
<SandboxMigrationModal
|
||||
show={showMigrationModal}
|
||||
show={showMigrationModal && !notSupportMigration}
|
||||
onClose={handleCloseMigrationModal}
|
||||
/>
|
||||
<WorkflowWithDefaultContext
|
||||
|
||||
Reference in New Issue
Block a user