We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3130076 commit b305854Copy full SHA for b305854
packages/batch/src/parser.ts
@@ -99,7 +99,7 @@ const parseWithErrorHandling = async (
99
}
100
const issues = result.error.cause as ReadonlyArray<StandardSchemaV1.Issue>;
101
const errorMessage = issues
102
- .map((issue) => `${issue?.path?.join('.')}: ${issue.message}`)
+ .map((issue) => `${issue.path?.join('.')}: ${issue.message}`)
103
.join('; ');
104
logger.debug(errorMessage);
105
throw new ParsingError(errorMessage);
0 commit comments