Skip to content

Commit 3349997

Browse files
committed
fix lint errs
1 parent 39f1033 commit 3349997

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/monitor/src/core/app-manager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ export class AppManager {
1919
startApp(appName: string): ResultAsync<pm2.ProcessDescription, Error> {
2020
this.#logger.info(`Starting app '${appName}'...`);
2121
return this.getAppOptions(appName)
22-
.asyncAndThen((opts) => {
22+
.asyncAndThen((opts) => {
2323
// @ts-expect-error - Undocumented PM2 field that can prevent your apps from actually showing on launch. Set this to false to prevent that default behavior.
2424
opts.pm2.windowsHide = opts.windows.hide;
25-
return this.#processManager.startProcess(opts.pm2)
25+
return this.#processManager.startProcess(opts.pm2);
2626
})
2727
.andThen(() => this.#processManager.getProcess(appName))
2828
.map((process) => {

0 commit comments

Comments
 (0)