Skip to content

Commit

Permalink
Merge pull request #3923 from d10c/d10c/compare-performance-rtjo
Browse files Browse the repository at this point in the history
ComparePerformance: fix crash in RTJO mode
  • Loading branch information
d10c authored Feb 11, 2025
2 parents 824bf30 + 8102750 commit 70cc4ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ function PredicateRow(props: PredicateRowProps) {
</>
}
/>
{abbreviateRASteps(first?.steps ?? second!.steps).map(
{abbreviateRASteps(first?.steps ?? second?.steps ?? []).map(
(step, index) => (
<PipelineStep
key={index}
Expand Down

0 comments on commit 70cc4ed

Please sign in to comment.