Skip to content

Commit 49bc4e8

Browse files
committed
Fixed return for monitor
1 parent 0e69a68 commit 49bc4e8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/monitor/lib/launchpad-monitor.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,9 @@ export class LaunchpadMonitor {
377377

378378
// Undocumented PM2 field that can prevent your apps from actually showing on launch. Set this to false to prevent that default behavior.
379379
options.pm2.windowsHide = options.windows.hide;
380-
return this._appLogRouter.initAppOptions(options);
380+
this._appLogRouter.initAppOptions(options);
381+
382+
return options;
381383
}
382384

383385
/**

0 commit comments

Comments
 (0)