Skip to content

Commit

Permalink
Remove redundant check
Browse files Browse the repository at this point in the history
  • Loading branch information
tausbn committed Nov 15, 2024
1 parent 73a865d commit b862d14
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -540,9 +540,7 @@ function ComparePerformanceWithData(props: {
<NumberHeader>{second != null && "After"}</NumberHeader>
{comparison && (
<NumberHeader>
{first != null &&
second != null &&
(comparison ? "Delta" : "Value")}
{first != null && second != null && "Delta"}
</NumberHeader>
)}
<NameHeader>
Expand Down

0 comments on commit b862d14

Please sign in to comment.