We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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