We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aebc88d commit 6cc736dCopy full SHA for 6cc736d
packages/cursorless-engine/src/spokenForms/CustomSpokenForms.ts
@@ -57,10 +57,11 @@ export class CustomSpokenForms {
57
58
constructor(private talonSpokenForms: TalonSpokenForms) {
59
this.disposable = talonSpokenForms.onDidChange(() =>
60
- this.updateSpokenFormMaps(),
+ this.updateSpokenFormMaps().catch(() => {}),
61
);
62
63
this.customSpokenFormsInitialized = this.updateSpokenFormMaps();
64
+ this.customSpokenFormsInitialized.catch(() => {});
65
}
66
67
/**
0 commit comments