Skip to content

Commit

Permalink
remove unused lines
Browse files Browse the repository at this point in the history
  • Loading branch information
koji committed Nov 6, 2024
1 parent 99f6748 commit e95b4e2
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions protocol-designer/src/pages/ProtocolOverview/SlotHover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,9 @@ export function SlotHover(props: SlotHoverProps): JSX.Element | null {
opacity: hoverOpacity,
flex: '1',
onMouseEnter: () => {
// setHover(slotId)
debouncedSetHover(slotId)
},
onMouseLeave: () => {
// setHover(null)
debouncedSetHover(null)
},
}}
Expand All @@ -154,12 +152,10 @@ export function SlotHover(props: SlotHoverProps): JSX.Element | null {
opacity: hoverOpacity,
flex: '1',
onMouseEnter: () => {
// setHover(slotId)
debouncedSetHover(slotId)
},
onMouseLeave: () => {
// setHover(null)
debouncedSetHover(slotId)
debouncedSetHover(null)
},
}}
>
Expand Down

0 comments on commit e95b4e2

Please sign in to comment.