diff --git a/src/vector/platform/ElectronPlatform.tsx b/src/vector/platform/ElectronPlatform.tsx index 61df849754..9453982f3c 100644 --- a/src/vector/platform/ElectronPlatform.tsx +++ b/src/vector/platform/ElectronPlatform.tsx @@ -504,6 +504,10 @@ export default class ElectronPlatform extends VectorBasePlatform { }); } + async getSpellCheckLanguages(): Promise { + return this._ipcCall('getSpellCheckLanguages'); + } + async getAvailableSpellCheckLanguages(): Promise { return this._ipcCall('getAvailableSpellCheckLanguages'); }