We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2b066f commit 629fac3Copy full SHA for 629fac3
packages/cursorless-engine/src/spokenForms/CustomSpokenForms.ts
@@ -59,11 +59,10 @@ export class CustomSpokenForms {
59
60
constructor(private talonSpokenForms: TalonSpokenForms) {
61
this.disposable = talonSpokenForms.onDidChange(() =>
62
- this.updateSpokenFormMaps().catch(() => {}),
+ this.updateSpokenFormMaps(),
63
);
64
65
this.customSpokenFormsInitialized = this.updateSpokenFormMaps();
66
- this.customSpokenFormsInitialized.catch(() => {});
67
}
68
69
/**
@@ -99,7 +98,7 @@ export class CustomSpokenForms {
99
98
this.spokenFormMap_ = { ...defaultSpokenFormMap };
100
this.notifier.notifyListeners();
101
102
- throw err;
+ return;
103
104
105
for (const entryType of SUPPORTED_ENTRY_TYPES) {
0 commit comments