diff --git a/src/components/tracker/TrackersTable.tsx b/src/components/tracker/TrackersTable.tsx index d1f1ae37b..1c663215d 100644 --- a/src/components/tracker/TrackersTable.tsx +++ b/src/components/tracker/TrackersTable.tsx @@ -67,7 +67,7 @@ export function RowContainer({ onMouseEnter={onMouseOver} onMouseLeave={onMouseOut} className={classNames( - 'h-14 flex flex-col justify-center px-3', + 'min-h-[50px] flex flex-col justify-center px-3', rounded === 'left' && 'rounded-l-lg', rounded === 'right' && 'rounded-r-lg', hover ? 'bg-background-50' : 'bg-background-60' @@ -87,8 +87,6 @@ export function TrackersTable({ }) { const [hoverTracker, setHoverTracker] = useState(null); - console.log(flatTrackers); - const trackerEqual = (id: TrackerIdT | null) => id?.trackerNum == hoverTracker?.trackerNum && (!id?.deviceId || id.deviceId.id == hoverTracker?.deviceId?.id);