Skip to content

Commit

Permalink
Update packages/lib/component-utilities/src/checkInputs.js
Browse files Browse the repository at this point in the history
Co-authored-by: Zach Stence <[email protected]>
  • Loading branch information
kwongz and zachstence authored Jan 29, 2025
1 parent 6d1e116 commit f4fa873
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/lib/component-utilities/src/checkInputs.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,7 @@ export default function checkInputs(data, reqCols, optCols) {
if (reqCols[i] == null) {
// missingCols.push(reqCols[i]);
throw Error(
'Missing required column(s): ' +
reqCols[i] +
' not found in data set. Please verify required column name(s).'
`Missing required column(s): ${reqCols[i]} not found in data set.`
);
}
}
Expand Down

0 comments on commit f4fa873

Please sign in to comment.