Skip to content

Commit b75b622

Browse files
feedback
1 parent f58d468 commit b75b622

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

packages/web/src/components/ui/toggle.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ const toggleVariants = cva(
1717
},
1818
size: {
1919
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",
2220
},
2321
},
2422
defaultVariants: {

packages/web/src/ee/features/codeNav/components/exploreMenu/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export const ExploreMenu = ({
9393
});
9494

9595
useHotkeys('shift+a', () => {
96-
setIsGlobalSearchEnabled(!isGlobalSearchEnabled);
96+
setIsGlobalSearchEnabled(prev => !prev);
9797
}, {
9898
enableOnFormTags: true,
9999
enableOnContentEditable: true,

0 commit comments

Comments
 (0)