We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ee4b80 commit 0765d20Copy full SHA for 0765d20
client/js/keybinds.ts
@@ -113,13 +113,13 @@ Mousetrap.bind(["alt+a"], function (e) {
113
});
114
115
// Show the help menu.
116
-Mousetrap.bind(["alt+/"], async function (e) {
+Mousetrap.bind(["alt+/"], function (e) {
117
if (isIgnoredKeybind(e)) {
118
return true;
119
}
120
121
- await navigate("Help");
122
-
+ /* eslint-disable no-console */
+ navigate("Help").catch((err) => console.log(err));
123
return false;
124
125
0 commit comments