Skip to content

Commit

Permalink
chore: simplified conditional expression
Browse files Browse the repository at this point in the history
  • Loading branch information
vvagaytsev committed Mar 4, 2024
1 parent f8c9588 commit ca7e144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/commands/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export class DeployCommand extends Command<Args, Opts> {
}

override useInkTerminalWriter(params) {
return !!this.maybePersistent(params)
return this.maybePersistent(params)
}

override terminate() {
Expand Down

0 comments on commit ca7e144

Please sign in to comment.