mirror of
https://github.com/langgenius/dify.git
synced 2026-04-08 06:00:33 -04:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
16 lines
298 B
TypeScript
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
|