mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-08-28 05:25:33 +00:00
Merge 71bc9e8418 into 9652478093
This commit is contained in:
commit
904bafcf35
1 changed files with 2 additions and 1 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue