Remove className "hover-status-wrapper" that has no styling

This commit is contained in:
danidfra 2024-11-04 11:55:24 -03:00
parent e3457dd760
commit 8e3d89ea75
1 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
import clsx from 'clsx';
import debounce from 'lodash/debounce';
import React, { useRef } from 'react';
import { useDispatch } from 'react-redux';
@ -45,7 +44,7 @@ export const HoverStatusWrapper: React.FC<IHoverStatusWrapper> = ({ statusId, ch
return (
<Elem
ref={ref}
className={clsx('hover-status-wrapper', className)}
className={className}
onMouseEnter={handleMouseEnter}
onMouseLeave={handleMouseLeave}
onClick={handleClick}