Closed
Description
Description
The following code has been marked as a bug:
electronim/src/tab-manager/preload.spell-check.js
Lines 19 to 23 in 9794439
It should be changed to:
const spellCheckFunction = (words, callback) => {
// eslint-disable-next-line no-undef
ipcRenderer.invoke(APP_EVENTS.dictionaryGetMisspelled, words)
.then(misspelled => callback(misspelled));
};