Skip to content

Commit

Permalink
internals: fixed spacing after 'Details:' (#14018)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkomyno committed Jun 27, 2022
1 parent c6951ec commit 7e7e804
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/internals/src/engine-commands/getConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ ${message}`
.with({ _tag: 'unparsed' }, ({ message, reason }) => {
const detailsHeader = chalk.red.bold('Details:')
return `${reason}
${detailsHeader}${message}`
${detailsHeader} ${message}`
})
.exhaustive()

Expand Down
2 changes: 1 addition & 1 deletion packages/internals/src/engine-commands/getDmmf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ ${message}`
.with({ _tag: 'unparsed' }, ({ message, reason }) => {
const detailsHeader = chalk.red.bold('Details:')
return `${reason}
${detailsHeader}${message}`
${detailsHeader} ${message}`
})
.exhaustive()

Expand Down

0 comments on commit 7e7e804

Please sign in to comment.