diff --git a/ui/components/findings/muted.tsx b/ui/components/findings/muted.tsx index 9ed971d1b9..59b6f86bad 100644 --- a/ui/components/findings/muted.tsx +++ b/ui/components/findings/muted.tsx @@ -1,4 +1,8 @@ -import { Tooltip } from "@heroui/tooltip"; +import { + Tooltip, + TooltipContent, + TooltipTrigger, +} from "@/components/shadcn/tooltip"; import { MutedIcon } from "../icons"; @@ -14,10 +18,16 @@ export const Muted = ({ if (isMuted === false) return null; return ( - -
- -
+ + +
+ + Muted +
+
+ + {mutedReason} +
); };