Skip to content

Commit b369d3c

Browse files
committed
chore: remove unused false type
1 parent 5c21dc8 commit b369d3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/composables/useShortcuts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { RouteLocationRaw } from 'vue-router'
22
import { isEditableElement, isKeyWithoutModifiers } from '~/utils/input'
33

4-
type ShortcutTarget = RouteLocationRaw | null | false | undefined
4+
type ShortcutTarget = RouteLocationRaw | null | undefined
55
type ShortcutTargetFactory = () => ShortcutTarget
66

77
const registry = new Map<string, ShortcutTargetFactory[]>()

0 commit comments

Comments
 (0)