fix: address presentation review findings

This commit is contained in:
lda
2026-07-08 06:23:58 +07:00 Verified
parent eb40c951d0
commit 20bf11dde1
29 changed files with 717 additions and 122 deletions
@@ -16,7 +16,7 @@ type DemoWorkflowSceneProps = {
readonly beat: SceneBeatDefinition;
readonly demo: DemoTimelineController;
readonly selectedNodeId: string | null;
readonly selectNode: (nodeId: string) => void;
readonly selectNode: (nodeId: string | null) => void;
readonly openEvidence: () => void;
};
@@ -98,7 +98,7 @@ export const DemoWorkflowScene = ({
</div>
{selectedNodeId && (
<NodeSpotlight nodeId={selectedNodeId} close={() => selectNode("")} />
<NodeSpotlight nodeId={selectedNodeId} close={() => selectNode(null)} />
)}
</>
);