Skip to content

Commit 510c8b5

Browse files
mgramignajafeltra
andauthored
Add space to comma join
Co-authored-by: Julia Afeltra <30803904+jafeltra@users.noreply.github.com>
1 parent c26a86c commit 510c8b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/BaseClient.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class BaseClient {
104104
const warnMessages = [];
105105
const debugMessages = [];
106106
invalidResources.forEach(({ failureId, errors }) => {
107-
warnMessages.push(`${failureId} at ${errors.map((e) => e.dataPath).join(',')}`);
107+
warnMessages.push(`${failureId} at ${errors.map((e) => e.dataPath).join(', ')}`);
108108

109109
errors.forEach((e) => {
110110
debugMessages.push(`${failureId} at ${e.dataPath} - ${e.message}`);

0 commit comments

Comments
 (0)