We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76161d7 commit 68a2f63Copy full SHA for 68a2f63
ts/packages/shell/test/testHelper.ts
@@ -147,7 +147,7 @@ export function getAppPath(): string {
147
* @returns The arguments to pass to the electron application
148
*/
149
export function getLaunchArgs(): string[] {
150
- const appPath = getAppPath();
+ const appPath = getAppPath();
151
// Ubuntu 24.04+ needs --no-sandbox, see https://github.com/electron/electron/issues/18265
152
return os.platform() === "linux" ? [appPath, "--no-sandbox"] : [appPath];
153
}
0 commit comments