Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion frontend/src/ts/elements/keymap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,11 @@ async function flashKey(key: string, correct?: boolean): Promise<void> {
duration: 250,
easing: "out(5)",
});
} catch (e) {}
} catch (e) {
if (e instanceof Error) {
console.log("could not flash keymap key: " + e.message);
}
}
});
}

Expand Down
Loading