Skip to content

Commit

Permalink
fix, change checkmark icon on Windows to not be a square root (#8642)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfirst authored Mar 7, 2024
1 parent e9e9adb commit 2ced679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scopes/harmony/logger/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,6 @@ export class Logger implements IBitLogger {
* see https://github.com/chalk/chalk/issues/625
*/
static successSymbol() {
return platform() === 'win32' ? chalk.green('') : chalk.green('✔');
return platform() === 'win32' ? chalk.green('') : chalk.green('✔');
}
}

0 comments on commit 2ced679

Please sign in to comment.