Skip to content

Commit

Permalink
Fix TestResultsContainer
Browse files Browse the repository at this point in the history
  • Loading branch information
majakomel committed Nov 1, 2023
1 parent da37a35 commit 78c2795
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renderer/components/test-results/TestResultsContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ const TestResultsContainer = ({results}) => {

// We try to add rows which were reported as errors by probe-cli into
// the results. Missing fields are handled in `ResultRow`
const fullRows = rows.concat(errors)
const fullRows = rows?.concat(errors)

const byMonth = groupRowsByMonth(fullRows)

Expand Down

0 comments on commit 78c2795

Please sign in to comment.