From 1f3876eadc25384c4f3fc98fb2d93af145088b97 Mon Sep 17 00:00:00 2001 From: Michele Bigi Date: Sun, 20 Sep 2026 10:05:02 +0200 Subject: [PATCH] Fix findings tree TypeScript duplicate findings prop. Spread parent props first, then override with the bucketed findings list so Next build typecheck passes. --- frontend/src/components/report/findings-tree.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/components/report/findings-tree.tsx b/frontend/src/components/report/findings-tree.tsx index 5ff4a56..a0faba5 100644 --- a/frontend/src/components/report/findings-tree.tsx +++ b/frontend/src/components/report/findings-tree.tsx @@ -107,9 +107,8 @@ export function FindingsTree(props: FindingsTreeProps) { {roots.map((root) => { const body = ( ); if (!showRoots) return
{body}
;