From 18d99afaa2455925c50de1a424415c152822d9b9 Mon Sep 17 00:00:00 2001 From: "flamingo[bot]" <277372822+flamingo[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2026 06:44:19 +0000 Subject: [PATCH] fix(FLEETMDM-010-2): Duplicate SVG gradient id 'fillPathId' generated once but used on two different elements --- frontend/pages/SoftwarePage/components/icons/Brave.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/pages/SoftwarePage/components/icons/Brave.tsx b/frontend/pages/SoftwarePage/components/icons/Brave.tsx index ea780aedd9f..0678d448406 100644 --- a/frontend/pages/SoftwarePage/components/icons/Brave.tsx +++ b/frontend/pages/SoftwarePage/components/icons/Brave.tsx @@ -5,6 +5,7 @@ import type { SVGProps } from "react"; const Brave = (props: SVGProps) => { const clipPathId = uniqueId("clip-path-"); const fillPathId = uniqueId("fill-path-"); + const fillPathId2 = uniqueId("fill-path-"); return ( @@ -23,7 +24,7 @@ const Brave = (props: SVGProps) => { /> @@ -41,7 +42,7 @@ const Brave = (props: SVGProps) => {