feat(confidence-engine): separate investigation report routes

This commit is contained in:
2026-09-03 06:39:35 +01:00
parent 745026f0a0
commit 32e1b01767
8 changed files with 567 additions and 176 deletions
+2 -1
View File
@@ -1336,6 +1336,7 @@ export default function ReasoningWorkspace({
setOverviewState,
overviewLoading,
handleRequestOverview,
onNavigateToReport,
}) {
const [investigationHistory, setInvestigationHistory] = useState([]);
const turnCounter = useRef(0);
@@ -1956,7 +1957,7 @@ export default function ReasoningWorkspace({
</p>
<button
onClick={() => {
handleRequestOverview();
onNavigateToReport?.();
}}
disabled={overviewLoading}
style={{ cursor: overviewLoading ? "wait" : "pointer" }}