Files
dify/web/app/components/workflow/syncing-data-modal.tsx
Stephen ZhouGitHubautofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>yyh
1873b22e96 refactor: update to tailwind v4 (#34415)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: yyh <[email protected]>
2026-04-02 07:06:11 +00:00

16 lines
298 B
TypeScript

import { useStore } from './store'
const SyncingDataModal = () => {
const isSyncingWorkflowDraft = useStore(s => s.isSyncingWorkflowDraft)
if (!isSyncingWorkflowDraft)
return null
return (
<div className="absolute inset-0 z-9999">
</div>
)
}
export default SyncingDataModal