This commit is contained in:
RIKIN SHAH , CSM 2026-08-26 09:36:31 -07:00 committed by GitHub
commit 904bafcf35
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -97,7 +97,8 @@ export function setupGlobalKeyboardShortcut() {
if (
(event.ctrlKey || event.metaKey) &&
event.shiftKey &&
event.key === "m"
// with Shift held, event.key is "M", never "m"
event.key.toLowerCase() === "m"
) {
event.preventDefault()
await saveMemory("keyboard_shortcut")