We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20a192a commit 4a8740dCopy full SHA for 4a8740d
arduino-ide-extension/src/browser/contributions/examples.ts
@@ -300,8 +300,8 @@ export class LibraryExamples extends Examples {
300
this.notificationCenter.onLibraryDidUninstall(() => this.update());
301
}
302
303
- override async onReady(): Promise<void> {
304
- this.update(); // no `await`
+ override onReady(): void {
+ this.boardsServiceProvider.ready.then(() => this.update());
305
306
307
protected override handleBoardChanged(board: Board | undefined): void {
0 commit comments