From 0e89ed2a6493ab1282423b1118b77a2e187fbee0 Mon Sep 17 00:00:00 2001
From: ValueOn AG
Date: Tue, 12 May 2026 23:33:44 +0200
Subject: [PATCH] fixes stt paras
---
.../FormGenerator/FormGeneratorTree/FormGeneratorTree.tsx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
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({
)}
+
);
}