@fselias Thanks! This is fixed now.
Very strange. I had this code for the "Cmd+K" search input listener.
// Toggle focus for the search input with CMD+K.
onKeyStroke(
"k",
(e) => {
input.value[input.value === document.activeElement ? 'blur' : 'focus']();
e.preventDefault();
},
{ eventName: "keydown", ctrl: true, meta: true }
);
But it seems like the listener was firing even if you just press "K" alone (without the cmd or ctrl keys). I changed it to:
onKeyStroke(
"k",
(e) => {
if (!(e.ctrlKey || e.metaKey)) return;
input.value[input.value === document.activeElement ? 'blur' : 'focus']();
e.preventDefault();
},
{ eventName: "keydown" }
);
...And that seems to have fixed the issue.