Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6eef5f commit e759610Copy full SHA for e759610
arduino-ide-extension/src/browser/contributions/new-cloud-sketch.ts
@@ -68,9 +68,7 @@ export class NewCloudSketch extends CloudSketchContribution {
68
registry.registerCommand(NewCloudSketch.Commands.NEW_CLOUD_SKETCH, {
69
execute: (params: NewCloudSketchParams) =>
70
this.createNewSketch(
71
- typeof params?.skipShowErrorMessageOnOpen === 'boolean'
72
- ? params.skipShowErrorMessageOnOpen
73
- : true,
+ params?.skipShowErrorMessageOnOpen === false ? false : true,
74
params?.initialValue,
75
params?.callback
76
),
0 commit comments