chore: not show upgrade to sandbox

This commit is contained in:
Joel
2026-01-29 14:59:47 +08:00
parent 2973968cc6
commit 459d9b5842

View File

@ -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