fix(ui): Fix regression on Shift-Backspace not being handled (#454)

This keystroke is valid and means "delete to the right" on MacOS.
This commit is contained in:
Marc Brooks 2025-05-16 05:38:56 -05:00 committed by GitHub
parent c9068af568
commit d54568642b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -243,6 +243,7 @@ export const keyDisplayMap: Record<string, string> = {
Escape: "esc",
Tab: "tab",
Backspace: "backspace",
"(Backspace)": "backspace",
Enter: "enter",
CapsLock: "caps lock",
ShiftLeft: "shift",