This commit is contained in:
bkellam 2025-11-30 18:48:27 -08:00
parent f58d468b76
commit b75b622999
2 changed files with 1 additions and 3 deletions

View file

@ -17,8 +17,6 @@ const toggleVariants = cva(
},
size: {
default: "h-7 w-7 min-w-7 p-0",
sm: "h-9 px-2.5 min-w-9",
lg: "h-11 px-5 min-w-11",
},
},
defaultVariants: {

View file

@ -93,7 +93,7 @@ export const ExploreMenu = ({
});
useHotkeys('shift+a', () => {
setIsGlobalSearchEnabled(!isGlobalSearchEnabled);
setIsGlobalSearchEnabled(prev => !prev);
}, {
enableOnFormTags: true,
enableOnContentEditable: true,