mirror of
https://github.com/langgenius/dify.git
synced 2026-07-24 21:16:24 -04:00
a84c2d36a3
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
12 lines
279 B
TypeScript
12 lines
279 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-50"></div>
|
|
}
|
|
|
|
export default SyncingDataModal
|