Add cancel to actions

This commit is contained in:
Jackson Harper
2023-06-08 14:30:16 +08:00
parent 02b68a036a
commit 7e5e7c4c5f
2 changed files with 1 additions and 2 deletions

View File

@ -612,7 +612,7 @@ export function HomeFeedContainer(): JSX.Element {
'performing bulk action: ',
action,
'mode',
mode,
multiSelectMode,
checkedItems
)
try {

View File

@ -109,7 +109,6 @@ export const useKeyboardShortcuts = (commands: KeyboardCommand[]): void => {
const { target } = keydownEvent
if (!keydownEvent.key) return
const key = keydownEvent.key.toLowerCase()
if (keys[key] === undefined) return
if (keys[key] === false) {
if (key === 'k' && metaPressed()) {