diff --git a/app/app.vue b/app/app.vue index 1e2fc1af2..e8103f513 100644 --- a/app/app.vue +++ b/app/app.vue @@ -69,7 +69,8 @@ function handleGlobalKeydown(e: KeyboardEvent) { router.push('/search') } - if (isKeyWithoutModifiers(e, '?')) { + // For "?" we check the key property directly since it's usually combined with shift + if (e.key === '?') { e.preventDefault() showKbdHints.value = true }