diff --git a/src/components/widgets/search-widget.tsx b/src/components/widgets/search-widget.tsx index 5c90c84..a2a1bc5 100644 --- a/src/components/widgets/search-widget.tsx +++ b/src/components/widgets/search-widget.tsx @@ -42,7 +42,8 @@ export function SearchWidget({ const onKeyPress = (e: React.KeyboardEvent) => { e.stopPropagation(); - if (canOpenApp && e.metaKey && e.key === 'Enter') { + console.log({ e }); + if (canOpenApp && e.altKey && e.key === 'Enter') { onOpenApp(); return; }