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 c26a86c commit 510c8b5Copy full SHA for 510c8b5
src/client/BaseClient.js
@@ -104,7 +104,7 @@ class BaseClient {
104
const warnMessages = [];
105
const debugMessages = [];
106
invalidResources.forEach(({ failureId, errors }) => {
107
- warnMessages.push(`${failureId} at ${errors.map((e) => e.dataPath).join(',')}`);
+ warnMessages.push(`${failureId} at ${errors.map((e) => e.dataPath).join(', ')}`);
108
109
errors.forEach((e) => {
110
debugMessages.push(`${failureId} at ${e.dataPath} - ${e.message}`);
0 commit comments