We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7df9902 commit e17ded9Copy full SHA for e17ded9
packages/compass-sidebar/src/components/db-stats.tsx
@@ -37,7 +37,6 @@ type Database = {
37
const dbStats = css({
38
display: 'flex',
39
alignItems: 'center',
40
- cursor: 'pointer',
41
padding: `${spacing[5]}px ${spacing[3]}px`,
42
gap: spacing[5],
43
});
packages/compass-sidebar/src/components/navigation-items.tsx
@@ -78,7 +78,7 @@ export function NavigationItem<Actions extends string>({
78
79
const onClick = useCallback(() => {
80
onAction('open-instance-workspace', tabName);
81
- }, [onAction]);
+ }, [onAction, tabName]);
82
83
return (
84
// eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/no-static-element-interactions
0 commit comments