Fixed typo for hotkeys

This commit is contained in:
thepaperpilot 2022-12-22 22:40:36 -06:00
parent 3d64b03905
commit b7b40a48aa

View file

@ -44,7 +44,7 @@ export type GenericHotkey = Replace<
}
>;
const uppercaseNumbers = [")", "!", "@", "#", "$", "5", "^", "&", "*", "("];
const uppercaseNumbers = [")", "!", "@", "#", "$", "%", "^", "&", "*", "("];
export function createHotkey<T extends HotkeyOptions>(
optionsFunc: OptionsFunc<T, BaseHotkey, GenericHotkey>