Fix findings-tree TS: do not pass findings twice.

Spread FindingsTreeProps first, then override protocol findings for CertificationsBranch so Next production typecheck can build 2.83.0.
This commit is contained in:
2026-09-22 18:53:13 +02:00
parent b32d581d27
commit 3046c4aeee
@@ -172,10 +172,10 @@ export function FindingsTree(props: FindingsTreeProps) {
))}
{cert ? (
<CertificationsBranch
{...props}
status={status}
instances={inst}
findings={protocolAtStatus}
{...props}
/>
) : null}
</TreeBranch>