Skip to content

Commit

Permalink
fix: print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
as1729 committed Oct 16, 2024
1 parent ff63392 commit 9543a07
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ async function validateRecord({ upload, record, typeRules: rules }) {
for (const entry of entries) {
if (!lcItems.includes(entry)) {
errors.push(new ValidationError(
`Entry '${entry}' of ${key} is not one of ${lcItems.length} valid options (${JSON.stringify(lcItems)})`,
`Entry '${entry}' of ${key} is not one of ${lcItems.length} valid options`,
{ col: rule.columnName, severity: 'err' },
));
}
Expand Down

0 comments on commit 9543a07

Please sign in to comment.