File tree 2 files changed +5
-4
lines changed
arduino-ide-extension/src/browser
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -193,10 +193,10 @@ export const ArduinoConfigSchema: PreferenceSchema = {
193
193
) ,
194
194
default : true ,
195
195
} ,
196
- 'arduino.cloud.sketchSyncEnpoint ' : {
196
+ 'arduino.cloud.sketchSyncEndpoint ' : {
197
197
type : 'string' ,
198
198
description : nls . localize (
199
- 'arduino/preferences/cloud.sketchSyncEnpoint ' ,
199
+ 'arduino/preferences/cloud.sketchSyncEndpoint ' ,
200
200
'The endpoint used to push and pull sketches from a backend. By default it points to Arduino Cloud API.'
201
201
) ,
202
202
default : 'https://api2.arduino.cc/create' ,
@@ -272,7 +272,7 @@ export interface ArduinoConfiguration {
272
272
'arduino.cloud.pull.warn' : boolean ;
273
273
'arduino.cloud.push.warn' : boolean ;
274
274
'arduino.cloud.pushpublic.warn' : boolean ;
275
- 'arduino.cloud.sketchSyncEnpoint ' : string ;
275
+ 'arduino.cloud.sketchSyncEndpoint ' : string ;
276
276
'arduino.auth.clientID' : string ;
277
277
'arduino.auth.domain' : string ;
278
278
'arduino.auth.audience' : string ;
Original file line number Diff line number Diff line change @@ -507,7 +507,8 @@ export class CreateApi {
507
507
}
508
508
509
509
private domain ( apiVersion = 'v2' ) : string {
510
- const endpoint = this . arduinoPreferences [ 'arduino.cloud.sketchSyncEnpoint' ] ;
510
+ const endpoint =
511
+ this . arduinoPreferences [ 'arduino.cloud.sketchSyncEndpoint' ] ;
511
512
return `${ endpoint } /${ apiVersion } ` ;
512
513
}
513
514
You can’t perform that action at this time.
0 commit comments