Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dliu27 committed Dec 19, 2024
1 parent 4a5be44 commit e00c753
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ export function useLaunchMultipleRunsWithTelemetry() {
}

if (
(jobNames.length !== executionParamsList.length && jobNames.includes(undefined)) ||
jobNames.length !== executionParamsList.length ||
jobNames.includes(undefined) ||
jobNames.includes(null)
) {
throw new Error(
Expand Down

0 comments on commit e00c753

Please sign in to comment.