From 1cc5c428ca9d5315f5fb02af69161d6723754fb6 Mon Sep 17 00:00:00 2001 From: Anderson Shindy Oki Date: Wed, 4 Dec 2024 09:53:28 +0900 Subject: [PATCH] no log: Remove provider tooltip unused hook and ref --- frontend/src/components/TextPopover.tsx | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/frontend/src/components/TextPopover.tsx b/frontend/src/components/TextPopover.tsx index 03dd58700..6eeb05835 100644 --- a/frontend/src/components/TextPopover.tsx +++ b/frontend/src/components/TextPopover.tsx @@ -1,6 +1,5 @@ import { FunctionComponent, ReactElement } from "react"; import { Tooltip, TooltipProps } from "@mantine/core"; -import { useHover } from "@mantine/hooks"; import { isNull, isUndefined } from "lodash"; interface TextPopoverProps { @@ -14,20 +13,13 @@ const TextPopover: FunctionComponent = ({ text, tooltip, }) => { - const { hovered, ref } = useHover(); - if (isNull(text) || isUndefined(text)) { return children; } return ( - -
{children}
+ +
{children}
); };