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

This keystroke is valid and means "delete to the right" on MacOS.
This commit is contained in:
Marc Brooks 2025-05-15 15:59:08 -05:00
parent 033bdcd645
commit bad26d4858
No known key found for this signature in database
GPG Key ID: 583A6AF2D6AE1DC6
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",