From 91fe7bc3c45491c93e09cec50b2eb0e91c4c5ac6 Mon Sep 17 00:00:00 2001 From: alejandrobailo Date: Fri, 20 Mar 2026 14:37:46 +0100 Subject: [PATCH] fix(ui): update muted indicator to match Figma design --- ui/components/findings/muted.tsx | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) 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} +
); };