change console.err to console.error (how did this even work before?? it's not a supported function in the console module from nodejs)

pull/91/head
bakzkndd 2 years ago
parent be6b8d02d9
commit 68fda68458

@ -21,7 +21,7 @@ const KeybindEntry = (() => {
keybindentry = keybind.props?.children?.type;
if (!keybindentry) throw 'Failed to get KeybindEntry component!';
} catch (err) {
console.err(err);
console.error(err);
keybindentry = () => null;
}

Loading…
Cancel
Save