Skip to content

Commit

Permalink
catch
Browse files Browse the repository at this point in the history
  • Loading branch information
stephmilovic committed Dec 2, 2024
1 parent a93dd55 commit e6b7627
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,11 @@ export class AIAssistantService {
this.initPromise,
this.installAndUpdateSpaceLevelResources.bind(this)
);
options.productDocManager.then((productDocManager) => {
this.productDocManager = productDocManager;
});
options.productDocManager
.then((productDocManager) => {
this.productDocManager = productDocManager;
})
.catch();
}

public isInitialized() {
Expand Down

0 comments on commit e6b7627

Please sign in to comment.