diff --git a/src/components/FormGenerator/FormGeneratorTree/FormGeneratorTree.tsx b/src/components/FormGenerator/FormGeneratorTree/FormGeneratorTree.tsx index 60b08ca..ef300db 100644 --- a/src/components/FormGenerator/FormGeneratorTree/FormGeneratorTree.tsx +++ b/src/components/FormGenerator/FormGeneratorTree/FormGeneratorTree.tsx @@ -416,7 +416,7 @@ export function FormGeneratorTree({ className, }: FormGeneratorTreeProps) { const { t } = useLanguage(); - const { confirm } = useConfirm(); + const { confirm, ConfirmDialog } = useConfirm(); const { prompt, PromptDialog } = usePrompt(); const [nodes, setNodes] = useState[]>([]); const [expandedIds, setExpandedIds] = useState>(new Set()); @@ -1032,6 +1032,7 @@ export function FormGeneratorTree({ )} + ); }