We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f58d468 commit b75b622Copy full SHA for b75b622
packages/web/src/components/ui/toggle.tsx
@@ -17,8 +17,6 @@ const toggleVariants = cva(
17
},
18
size: {
19
default: "h-7 w-7 min-w-7 p-0",
20
- sm: "h-9 px-2.5 min-w-9",
21
- lg: "h-11 px-5 min-w-11",
22
23
24
defaultVariants: {
packages/web/src/ee/features/codeNav/components/exploreMenu/index.tsx
@@ -93,7 +93,7 @@ export const ExploreMenu = ({
93
});
94
95
useHotkeys('shift+a', () => {
96
- setIsGlobalSearchEnabled(!isGlobalSearchEnabled);
+ setIsGlobalSearchEnabled(prev => !prev);
97
}, {
98
enableOnFormTags: true,
99
enableOnContentEditable: true,
0 commit comments