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 3b82b9c commit 2972d28Copy full SHA for 2972d28
webapp/app.ironcalc.com/frontend/src/components/LeftDrawer/LeftDrawer.tsx
@@ -29,7 +29,6 @@ const LeftDrawer: React.FC<LeftDrawerProps> = ({
29
models,
30
selectedUuid,
31
}) => {
32
- const [hoveredUuid, setHoveredUuid] = useState<string | null>(null);
33
const [menuAnchorEl, setMenuAnchorEl] = useState<null | HTMLElement>(null);
34
const [selectedWorkbookUuid, setSelectedWorkbookUuid] = useState<
35
string | null
@@ -72,8 +71,6 @@ const LeftDrawer: React.FC<LeftDrawerProps> = ({
72
71
setModel(uuid);
73
}}
74
selected={uuid === selectedUuid}
75
- onMouseEnter={() => setHoveredUuid(uuid)}
76
- onMouseLeave={() => setHoveredUuid(null)}
77
disableRipple
78
>
79
<StorageIndicator>
0 commit comments